Add race tests

This commit is contained in:
edoardottt
2022-11-15 18:51:32 +01:00
parent b90dc40cbb
commit eddba1c4aa
+5 -2
View File
@@ -16,10 +16,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
run: go test -v ./...
- name: Race
run: go build -race ./...