Skip to content

Commit

Permalink
Fix Gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa committed Sep 9, 2023
1 parent 65ba9ce commit 59eb119
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Run tests
run: ./gradlew testJvm
run: ./gradlew jvmTest

test-linux:
runs-on: ubuntu-latest
Expand All @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4

- name: Run tests
run: ./gradlew testNative
run: ./gradlew nativeTest

test-darwin:
runs-on: macos-latest
Expand All @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v4

- name: Run tests
run: ./gradlew testNative
run: ./gradlew nativeTest

test-mingw:
runs-on: windows-latest
Expand All @@ -41,4 +41,4 @@ jobs:
uses: actions/checkout@v4

- name: Run tests
run: ./gradlew testNative
run: ./gradlew nativeTest

0 comments on commit 59eb119

Please sign in to comment.