wip
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2026-02-15 20:37:57 +01:00
parent 437a285cc8
commit 8c32b74838

View File

@@ -8,11 +8,15 @@ on:
jobs: jobs:
test: test:
runs-on: x86_64 runs-on: ubuntu-latest
steps: steps:
- uses: https://gitea.com/actions/checkout@v4 - uses: https://gitea.com/actions/checkout@v4
- uses: https://gitea.com/actions/setup-go@v5
with: - name: Install Go
go-version-file: go.mod run: |
GO_VERSION=$(grep '^go ' go.mod | awk '{print $2}')
curl -fsSL "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" | sudo tar -C /usr/local -xz
echo "/usr/local/go/bin" >> $GITHUB_PATH
- name: Run tests - name: Run tests
run: go test -v -race -coverprofile=coverage.out ./... run: go test -v -race -coverprofile=coverage.out ./...