Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 14, 2025
1 parent d41ee1f commit 8040eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ 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: env.RUN_MAIN_CI
if: ${{ env.RUN_MAIN_CI }}
uses: ./.github/workflows/pre-build.yml
with:
os: ubuntu-latest

build-windows:
if: env.RUN_MAIN_CI
if: ${{ env.RUN_MAIN_CI }}
uses: ./.github/workflows/pre-build.yml
with:
os: windows-latest

test-docs:
if: env.RUN_MAIN_CI
if: ${{ env.RUN_MAIN_CI }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -73,7 +73,7 @@ jobs:
- run: ./mill -i docs.fastPages + docs.checkBrokenLinks

mac:
if: env.RUN_MAIN_CI
if: ${{ env.RUN_MAIN_CI }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 8040eaf

Please sign in to comment.