Add post-Merge fixtures and refactor #6

Merged
roysc merged 13 commits from new-fixtures into main 2024-07-08 06:35:30 +00:00
Showing only changes of commit 1c6b2f712f - Show all commits

21
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,21 @@
name: Test
on:
pull_request:
branches: '*'
push:
branches:
- main
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
check-latest: true
- name: Run unit tests
run: go test -v ./...