Skip to content

Prep 0.1.4 release

Prep 0.1.4 release #64

Workflow file for this run

name: CI
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.9
- name: Install poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.3.1
- name: Print Environment
run: |
poetry install
poetry --version
- name: Run pytest
run: poetry run pytest
- name: Install and Run Pre-Commit
run: |
poetry run pre-commit install
poetry run pre-commit run --all-files