mirror of https://github.com/astral-sh/uv
Fix `if` on macos test job (#14551)
This commit is contained in:
parent
a3bc30c1a7
commit
1b2ac40568
|
|
@ -233,7 +233,7 @@ jobs:
|
|||
timeout-minutes: 15
|
||||
needs: determine_changes
|
||||
# Only run macOS tests on main without opt-in
|
||||
if: ${{ contains(github.event.pull_request.labels.*.name, 'test:macos' || github.ref == 'refs/heads/main') }}
|
||||
if: ${{ contains(github.event.pull_request.labels.*.name, 'test:macos') || github.ref == 'refs/heads/main' }}
|
||||
runs-on: macos-latest-xlarge # github-macos-14-aarch64-6
|
||||
name: "cargo test | macos"
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Reference in New Issue