priorityq/.gitea/workflows/build.yaml
Sam Fredrickson 38ef55e463
Some checks failed
Build & Test / Main (push) Failing after 11s
Update Go in build workflow.
2024-08-22 00:59:08 -07:00

29 lines
464 B
YAML

name: Build & Test
on:
push:
branches:
- "**"
jobs:
Main:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23.0
-
name: Run linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
-
name: Run tests
run: go test ./...