Testing #1599
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: Testing | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "5 1 * * *" | |
| jobs: | |
| gofmt: | |
| name: go fmt (Go ${{ matrix.go }}) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| go: ["1.25", "1.24"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run go fmt | |
| if: runner.os != 'Windows' | |
| run: diff -u <(echo -n) <(gofmt -d -s .) | |
| govet: | |
| name: go vet (Go ${{ matrix.go }}) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| go: ["1.25", "1.24"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run go vet | |
| run: make vet | |
| staticcheck: | |
| name: staticcheck (Go ${{ matrix.go }}) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| go: ["1.25", "1.24"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run staticcheck | |
| uses: dominikh/[email protected] | |
| with: | |
| version: "2025.1.1" | |
| install-go: false | |
| cache-key: ${{ matrix.go }} | |
| unittesting: | |
| name: unit testing (Go ${{ matrix.go }}) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| go: ["1.25", "1.24"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run Unit tests. | |
| run: make test |