Skip to content

Build and upload script #25

Build and upload script

Build and upload script #25

Workflow file for this run

name: Run unit tests
on: [pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
pip install -e .[dev]
pip list
- name: Run tests
run: |
pytest tests -v