oxide: bump omicron to d2f6833. #586
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 & test | |
| on: | |
| push: | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: build | |
| shell: bash | |
| run: | | |
| make build | |
| - name: test | |
| shell: bash | |
| run: | | |
| make test | |
| - name: lint | |
| shell: bash | |
| run: | | |
| make lint | |
| - name: staticcheck | |
| shell: bash | |
| run: | | |
| make staticcheck | |
| - name: vet | |
| shell: bash | |
| run: | | |
| make vet | |
| - name: fmt | |
| shell: bash | |
| run: | | |
| make fmt | |