Skip to content
Merged
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
16 changes: 15 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,15 @@ jobs:
- name: macOS
os: macos-13
cachepath: ~/Library/Caches/pip
packages: imagemagick librsvg

- name: macOS-arm
os: macos-14
cachepath: ~/Library/Caches/pip
packages: imagemagick librsvg

- name: Windows
os: windows-2019
os: windows-2022
cachepath: ~\AppData\Local\pip\Cache

steps:
Expand All @@ -61,6 +67,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Setup node.js 22
uses: actions/setup-node@v6
with:
node-version: 22
- name: Setup pip cache
uses: actions/cache@v4
with:
Expand All @@ -74,6 +84,10 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends --no-upgrade -qq ${{ matrix.config.packages }}
fi
if [[ ${{ matrix.config.os }} = macos* ]]; then
npm install -g --no-fund appdmg
brew install ${{ matrix.config.packages }}
fi
pip install -r requirements.txt
- name: Build
run: |
Expand Down