Skip to content

Wip: Add CI workflows #1

Wip: Add CI workflows

Wip: Add CI workflows #1

Workflow file for this run

name: 'test'
on:
[push, pull_request]
jobs:
pytest:
name: "Test with PyTest"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: "Install Dependencies"
shell: bash
run: |
python -m pip install flit
cd src
flit install --extras all
- name: "Run Tests"
shell: bash
run: |
pytest ./src