chore(deps): update docker/setup-qemu-action action to v3 (#217) #459
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: test | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.22.0 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.22.0 | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Go mod tidy check | |
| run: go mod tidy && git diff --exit-code | |
| - name: Get dependencies | |
| run: go get -v -t -d ./... | |
| - name: Execute test | |
| run: make test |