Skip to content

chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /example10-simple-http-server/gin #181

chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /example10-simple-http-server/gin

chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /example10-simple-http-server/gin #181

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: [1.18, 1.19, "1.20", 1.21, 1.22]
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout Code
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Run Testing
run: |
CURRENT_PATH=$(pwd)
cd ${CURRENT_PATH}/example36-performance && go test -v -bench=. ./...
cd ${CURRENT_PATH}/example52-ring-buffer-queue && go test -v -run=^$ -benchmem -bench . ./...