Skip to content

More Experiment/Event fixing #10

More Experiment/Event fixing

More Experiment/Event fixing #10

Workflow file for this run

name: Pytest Unit Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout code
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: 3.9
- name: Install dependencies
run: pdm install
- name: Test with pytest
run: pdm run pytest -vs