Skip to content

Merge pull request #413 from kedhammar/pytest-ci #1

Merge pull request #413 from kedhammar/pytest-ci

Merge pull request #413 from kedhammar/pytest-ci #1

Workflow file for this run

name: Test code
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Install TACA
run: pip install -e .
- name: pytest
# Options are configured in pyproject.toml
run: pytest