Remove 32 from token32, tokens32 and node32 #29
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Generated files up-to-date | |
| run: | | |
| go generate | |
| git diff --quiet | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| # Require: The version of golangci-lint to use. | |
| version: latest | |
| - name: Test | |
| run: go test -short ./... |