Skip to content

Fix bug with installing dependencies #3

Fix bug with installing dependencies

Fix bug with installing dependencies #3

Workflow file for this run

name: CI
on: [workflow_dispatch, pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Test with pytest
run: |
python -m pytest