deprecated reflect mode has been replaced with import mode #334
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.19.x, 1.21.x, 1.22.x] # oldest version that can build go mock and official supported go versions | |
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 |