Skip to content

Commit

Permalink
Merge pull request #555 from robertknight/skip-python-lint-on-macos
Browse files Browse the repository at this point in the history
Skip Python lint on macOS CI
  • Loading branch information
robertknight authored Jan 26, 2025
2 parents 4e082b1 + af9795f commit d08a5a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
ci:
strategy:
matrix:
# The macOS build tests Arm and macOS-specific code paths.
# The Linux build tests everything else (x64, wasm, Python ...)
os: [ubuntu-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -66,10 +68,12 @@ jobs:
run: |
python -m venv .venv
.venv/bin/pip install --upgrade pip
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Python Lint
run: |
source .venv/bin/activate
cd rten-convert
pip install -e .
pip install -r requirements.dev.txt
make check
if: ${{ matrix.os == 'ubuntu-latest' }}

0 comments on commit d08a5a1

Please sign in to comment.