Skip to content

update project build #19

update project build

update project build #19

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
#container: python:3.10 # optional
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install -e .
- name: List installed Python packages
run: python -m pip list
- name: Run tests with pytest
run: pytest