Files
secret/.gitea/workflows/test.yaml
maze 601d881ddc
Some checks failed
test / test-default (push) Failing after 1m17s
Enable Gitea workflow
2025-09-09 09:52:19 +02:00

27 lines
431 B
YAML

name: test
on:
push:
branches:
- main
jobs:
test-default:
runs-on: ubuntu-latest
container:
image: gitea/runner-images:ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: |
go test -v ./...
go vet ./...