Skip to content

[pre-commit.ci] pre-commit autoupdate #182

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #182

Workflow file for this run

name: test
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [ 3.8, 3.9 ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: pre-commit/[email protected]
- name: Install
run: |
pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest
env:
CI: true