Add test tags to github workflow

This commit is contained in:
2024-11-30 11:48:57 +01:00
parent ae48761d34
commit 842513f8a5

View File

@@ -27,13 +27,8 @@ jobs:
go-version: "1.23"
cache: true
# - name: Install dependencies
# run: |
# sudo apt-get update
# sudo apt-get install -y gcc
- name: Run Tests
run: go test ./... -v
run: go test -tags=test,integration ./... -v
- name: Run Tests with Race Detector
run: go test -race ./... -v
run: go test -tags=test,integration -race ./... -v