Skip to content

Commit

Permalink
Don't try to run testing task that doesn't exist.
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskorn committed Sep 3, 2021
1 parent 6eeb628 commit e289ed1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Run Windows tests
if: matrix.os == 'windows-latest'
run: ./gradlew mingwX64Test mingwX86Test --scan
run: ./gradlew mingwX64Test --scan

- name: Run macOS tests
if: matrix.os == 'macOS-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
fetch-depth: 0

- name: Run tests
run: ./gradlew mingwX64Test mingwX86Test --scan
run: ./gradlew mingwX64Test --scan

- name: Bundle the build report
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
fetch-depth: 0

- name: Run tests
run: ./gradlew mingwX64Test mingwX86Test --scan
run: ./gradlew mingwX64Test --scan

- name: publish mingw64 and mingw86 snapshot
run: ./gradlew publishMingwX64PublicationToDeployRepository publishMingwX86PublicationToDeployRepository
Expand Down

0 comments on commit e289ed1

Please sign in to comment.