updated test.yaml
Some checks failed
Bot Unit Tests / test (push) Has been cancelled

This commit is contained in:
2026-04-01 20:21:57 +02:00
parent 120b713fb4
commit e4b86421a6

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