Skip to content

First round of updates (#10) #355

First round of updates (#10)

First round of updates (#10) #355

Workflow file for this run

name: CI
on: push
jobs:
format-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install ruff isort
- run: isort . --check
- run: ruff check
pytest:
runs-on: ubuntu-latest
container:
image: aaherzing/etspy:latest
steps:
- uses: actions/checkout@v4
- name: Install ETSpy
run: pip install -e ./
- name: Run docstring example tests
run: pytest --doctest-modules --ignore=etspy/tests etspy/
- name: Run full test suite
if: always()
run: pytest etspy/tests/