Fix typo in changelog #23
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: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Build all platforms | |
| run: make build-all | |
| - name: Check formatting | |
| run: | | |
| test -z "$(gofmt -l .)" | |
| build-minimum: | |
| runs-on: ubuntu-latest | |
| env: | |
| GOTOOLCHAIN: local | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go (minimum version) | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.21' | |
| - name: Build all platforms | |
| run: make build-all |