diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc31f5d2a..523c57605 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ permissions: jobs: unit-test: - runs-on: self-hosted + runs-on: ${{ vars.RUNNER_TEST }} env: GOPRIVATE: github.com/anyproto steps: diff --git a/Makefile b/Makefile index f17bb732f..973bf5280 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ lint: test: @echo 'Running tests...' - @ANYTYPE_LOG_NOGELF=1 CGO_CFLAGS="-Wno-deprecated-declarations -Wno-deprecated-non-prototype -Wno-xor-used-as-pow" go test -cover github.com/anyproto/anytype-heart/... + @ANYTYPE_LOG_NOGELF=1 go test -cover github.com/anyproto/anytype-heart/... test-integration: @echo 'Running integration tests...'