Tweak Abins-Pychop test; LinAlgError is only encountered on Windows #10
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: Run tests | |
on: [push,workflow_dispatch] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Miniconda | |
uses: conda-incubator/[email protected] | |
with: | |
python-version: '3.10' | |
channels: conda-forge | |
miniforge-version: "latest" | |
- name: Install tox | |
shell: bash -el {0} | |
run: mamba install tox | |
- name: Test with tox | |
shell: bash -el {0} | |
run: tox |