Skip to content

CNN Fixes & IRL Resimulation #127

CNN Fixes & IRL Resimulation

CNN Fixes & IRL Resimulation #127

Workflow file for this run

on:
push:
branches: main
paths:
- "**.py"
pull_request:
paths:
- "**.py"
name: pytest
jobs:
pytest:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/[email protected]
# Setup Python
- name: Setup Python 3.11
uses: actions/[email protected]
with:
python-version: "3.11"
# Install the package and development requirements
- name: Install package and development requirements
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
# Run the tests
- name: Run tests
run: |
pytest tests