initial merge #1

Merged
Jannis merged 9 commits from dev into main 2026-04-01 19:04:10 +00:00
Showing only changes of commit e4b86421a6 - Show all commits

View File

@@ -7,18 +7,13 @@ on:
branches: [ "main", "master" ]
jobs:
run-tests:
# This MUST match the label you defined in your Docker Stack
runs-on: go-latest
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: go mod tidy
- name: Run Go Tests
# -v gives us verbose output so we see exactly what fails
# ./... runs tests in main and db_management
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.26.1'
- name: Run Tests
run: go test ./... -v