Skip to content

Commit

Permalink
Fix malformed expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Dec 18, 2024
1 parent 063d847 commit 3088f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
tox-skip-env: ${{((github.event_name == 'workflow_dispatch') && '' || '.*?(py311).*?')}}
coverage: false
- os: macos-13
if: ${{((github.event_name == 'workflow_dispatch')
if: ${{ github.event_name == 'workflow_dispatch' }}
python-versions: ['3.10', '3.11', '3.12']
tox-skip-env: ''
coverage: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_checkout_one_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
shell: bash -l {0}
env:
# Homebrew location is different on Intel Mac
LLVM_DIR: ${{ (${{ inputs.os }} == 'macos-13') && '/usr/local/opt/llvm' || '/opt/homebrew/opt/llvm' }}
LLVM_DIR: ${{ ( inputs.os == 'macos-13') && '/usr/local/opt/llvm' || '/opt/homebrew/opt/llvm' }}
run: |
brew install llvm
echo CC="${LLVM_DIR}/bin/clang" >> $GITHUB_ENV
Expand Down

0 comments on commit 3088f87

Please sign in to comment.