dependency bump (#76) #239
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: Go test | |
| on: [push] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| - name: Go generate | |
| run: | | |
| go generate ./... | |
| touch cmd/rest-server/static/placeholder # we're not building frontend, so we put a placeholder | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: latest | |
| only-new-issues: true | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go 1.25.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25.x' | |
| - name: Install dependencies | |
| run: | | |
| go get ./... | |
| - name: Go generate | |
| run: | | |
| go generate ./... | |
| touch cmd/rest-server/static/placeholder # we're not building frontend, so we put a placeholder | |
| - name: Test | |
| run: make test |