Skip to content

Update testing workflow with dev dependencies and full python coverage #93

Update testing workflow with dev dependencies and full python coverage

Update testing workflow with dev dependencies and full python coverage #93

Workflow file for this run

name: run-tests
on:
pull_request:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: install dependencies
run: pip install .[dev]
shell: bash
- name: run tests
run: pytest
shell: bash