Skip to content

General changes related to making repo public #9

General changes related to making repo public

General changes related to making repo public #9

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
- develop
jobs:
run_tests:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v2
with:
python-version: 3.11.x
- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install -r requirements.txt
- name: Run tests
run: |
python -m pytest