Skip to content

Commit

Permalink
ci: remove platforms without graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-eschle committed Apr 15, 2024
1 parent 651b207 commit 185a236
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ jobs:
matrix:
os: [ ubuntu-latest ]
python-version: ["3.10", "3.12"]
include:
- os: macos-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.9"
- os: macos-14 # Apple silicon runner
python-version: '3.12'
# include: # todo: activate when we can install graphviz on these platforms
# - os: macos-latest
# python-version: "3.9"
# - os: windows-latest
# python-version: "3.9"
# - os: macos-14 # Apple silicon runner
# python-version: '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -79,6 +79,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt install graphviz -y
pip install -e .[dev]
- name: Download test data
run: python data/download_test_files.py > /dev/null
Expand Down

0 comments on commit 185a236

Please sign in to comment.