Fix error handling some maps #48
Workflow file for this run
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
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python: ["3.9", "3.10", "3.11", "3.12"] | |
os: | |
- ubuntu-22.04 | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
- name: Install shroudstone | |
run: pip install -e .[test] | |
- name: Run tests | |
run: python -m pytest |