Skip to content

Properly bump to v1.9.4 #220

Properly bump to v1.9.4

Properly bump to v1.9.4 #220

Workflow file for this run

name: pytest
on:
workflow_dispatch:
push:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.x' ]
name: pytest ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Install dependencies
run: python -m pip install -e .[test]
- name: Run Pytest
run: pytest