Use wuffs-unsupported-snapshot, support JPEG #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-test: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build wheel | |
run: python3 -m pip wheel . | |
- name: Install wheel | |
run: python3 -m pip install *.whl | |
- name: Install test requirements | |
run: python3 -m pip install -r test/requirements.txt | |
- name: Run tests | |
run: python3 -m pytest test/ |