Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 13, 2024
1 parent 3c8efa6 commit e2891af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
# Jobs are listed in rough order of priority: if multiple jobs fail, the first job
# in the list should be the one that's most worth looking into
build-linux:
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft != false
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-mill-action.yml
with:
java-version: '11'
millargs: __.compile
populate_cache: true

build-windows:
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft != false
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-mill-action.yml
with:
os: windows-latest
Expand All @@ -46,7 +46,7 @@ jobs:
populate_cache: true

test-docs:
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft != false
if: github.event.action == 'ready_for_review' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e2891af

Please sign in to comment.