Skip to content

Enable integration tests when go version is not 1.18 #295

Enable integration tests when go version is not 1.18

Enable integration tests when go version is not 1.18 #295

Workflow file for this run

name: Run tests
on:
push:
branches: ['*']
pull_request:
branches: ['*']
permissions:
contents: read
env:
GO111MODULE: on
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: '**/go.sum'
- name: Vet and build
run: |
go vet ./...
go build ./...
- name: Install mockgen
run: |
go install go.uber.org/mock/mockgen
- name: Run test script
run: |
./ci/test.sh
./ci/check_panic_handling.sh
- name: Run Tests
run: |
for i in $(find $PWD -name go.mod); do
pushd $(dirname $i)
go test ./...
popd
done