ci: run sast+tests
All checks were successful
/ sast (push) Successful in 37s
/ tests (push) Successful in 1m3s

This commit is contained in:
Marc 2024-07-11 20:37:10 -04:00
parent fba9720db0
commit 40e9ccc61c
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -0,0 +1,24 @@
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v
sast:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Check formatting
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi