various updates (May 2023) #62
This file contains hidden or 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: Tests | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test with Go ${{ matrix.go }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '1.13', '1.14', '1.15', '1.16' ] | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v2 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Test | |
| run: go test -v ./... |