We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c1218 commit 0be81a3Copy full SHA for 0be81a3
.github/workflows/ci.yml
@@ -54,7 +54,7 @@ jobs:
54
- name: Install unzip
55
run: apt-get update && apt-get install -y unzip
56
- name: Run tests
57
- run: cp .env.testing.template .env.testing && make test
+ run: cp .env.testing.template .env.testing && make test-plain
58
env:
59
COLLECTION_SIGNING_PRIVATE_KEY: ${{ secrets.COLLECTION_SIGNING_PRIVATE_KEY }}
60
DATABASE_HOST: postgres
Makefile
@@ -33,6 +33,9 @@ build:
33
run:
34
swift run
35
36
+test-plain:
37
+ swift test --disable-automatic-resolution --sanitize=thread
38
+
39
test: xcbeautify
40
set -o pipefail \
41
&& swift test --disable-automatic-resolution --sanitize=thread \
0 commit comments