Improvements
All checks were successful
Run Tests / test (push) Successful in 25s

This commit is contained in:
2024-04-24 22:04:34 +02:00
parent c73fa4e72b
commit 99eeeedc65
10 changed files with 157 additions and 28 deletions

22
.github/workflows/run_tests.yaml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.22.1'
- name: Run tests
run: go test ./...