We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025f66a commit bd84095Copy full SHA for bd84095
1 file changed
.github/workflows/simple-unit-tests.yml
@@ -1,4 +1,4 @@
1
-name: Check simple unit tests
+name: Check unit tests
2
3
on:
4
push:
@@ -7,7 +7,7 @@ on:
7
branches: [ "master" ]
8
9
jobs:
10
- test:
+ db-tests:
11
runs-on: self-hosted
12
env:
13
MONGO_URI: ${{ secrets.MONGO_TEST_URI }}
@@ -33,10 +33,10 @@ jobs:
33
run: ./gradlew --no-daemon jar
34
35
- name: Run MoviesExample
36
- run: ./gradlew test --tests "MoviesExample"
+ run: ./gradlew --no-daemon test --tests "MoviesExample"
37
38
- name: Run BlockingDatabaseTests
39
- run: ./gradlew test --tests "BlockingDatabaseTests"
+ run: ./gradlew --no-daemon test --tests "BlockingDatabaseTests"
40
41
- name: Run SuspendingDatabaseTests
42
- run: ./gradlew test --tests "SuspendingDatabaseTests"
+ run: ./gradlew --no-daemon test --tests "SuspendingDatabaseTests"
0 commit comments