Merge pull request #704 from reecerussell/patch-1 #1597
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: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "5 1 * * *" | |
| jobs: | |
| unit-test: | |
| name: Unit tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go: [ '1.19', '1.18' ] | |
| os: [ 'windows-latest', 'ubuntu-latest', 'macOS-latest' ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run Unit tests (Go ${{ matrix.go }}) | |
| run: make test | |
| fmt: | |
| name: go fmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.19 | |
| - name: Run go fmt (Go ${{ matrix.go }}) | |
| if: runner.os != 'Windows' | |
| run: diff -u <(echo -n) <(gofmt -d -s .) | |
| vet: | |
| name: go vet | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.19 | |
| - name: Run go vet | |
| run: make vet | |
| staticcheck: | |
| name: staticcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.19 | |
| - name: Run staticcheck (Go ${{ matrix.go }}) | |
| uses: dominikh/staticcheck-action@v1.3.1 | |
| with: | |
| version: "2022.1" | |
| install-go: false | |
| cache-key: staticcheck-cache |