Skip to content

Set up RTD and auto build on PR #31

Set up RTD and auto build on PR

Set up RTD and auto build on PR #31

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Running tests
on:
push:
branches: [ "main", "brandynlucca-WIP-refactoring" ]
pull_request:
branches: [ "main", "brandynlucca-WIP-refactoring" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
pip install -r requirements-dev.txt
pip install -e .
- name: Test with pytest
run: |
pytest