Skip to content

Merge pull request #184 from cphyc/pre-commit-ci-update-config #387

Merge pull request #184 from cphyc/pre-commit-ci-update-config

Merge pull request #184 from cphyc/pre-commit-ci-update-config #387

Workflow file for this run

name: Python package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Test with pytest
run: |
pytest --mpl --mpl-results-path=results --mpl-generate-summary=html
- uses: actions/upload-artifact@v2
if: failure()
with:
name: pytest-${{ matrix.python-version }}-results
path: results