advent-of-code/.github/workflows/workflow.yaml
Dan Anglin cfb64d80aa
All checks were successful
/ test (pull_request) Successful in 25s
ci: add workflows for both Actions
- add a workflow for Forgejo Actions
- add a workflow for GitHub Actions
2023-12-03 00:14:40 +00:00

14 lines
197 B
YAML

---
name: test
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/checkout@v3
- run: go test -v ./...