131 Fix rendering hang when parent directory of output file doesn't e… #312
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: build and test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: [3.7, 3.8, 3.9, "3.10"] # https://github.com/actions/runner/issues/1989 | |
exclude: | |
# excludes 3.7 on macos-latest (no native build for M1) | |
- os: macos-latest | |
python-version: 3.7 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Python Setup | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install and Test | |
shell: bash -l {0} | |
run: | | |
pip install . | |
pip install -r requirements.txt | |
make test |