Skip to content

dependency bump (#76) #239

dependency bump (#76)

dependency bump (#76) #239

Workflow file for this run

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