Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-13, windows-latest]
python-version: [3.8, 3.9]

steps:
Expand All @@ -47,12 +47,12 @@ jobs:
- run: sudo apt-get -y install graphviz
if: matrix.os == 'ubuntu-latest'
- run: brew install graphviz
if: matrix.os == 'macOS-latest'
if: matrix.os == 'macos-13'
- run: choco install graphviz
if: matrix.os == 'windows-latest'

- run: python -m pip install cython numpy versioneer pybind11 matplotlib lxml
if: matrix.os == 'macOS-latest'
if: matrix.os == 'macos-13'

- name: Install Quark-Engine
run: pip install .
Expand Down