Skip to content

Link correction, rearrange some words #32

Link correction, rearrange some words

Link correction, rearrange some words #32

Workflow file for this run

name: Run Pytest
on:
# Building on pull-requests, manual dispatch, and pushes to main; but restricting
# publishing only to main pushes and manual dispatch with `if`s in specific steps.
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install packages
run: pip install .[test]
- name: Run pre-commit
run: pytest test