Skip to content

PET: n2

PET: n2 #6

Workflow file for this run

# This `test.yml` file defines a GitHub action that will run for all pull requests,
# and for all pushes to main. It installs the python test libraries `parameterized`
# and `pytest`, and then runs the `pytest` command. This automatically detects
# `test_*.py` files and executes tests therein.
name: CI
on:
pull_request:
push:
branches:
- master
# schedule:
# - cron: "0 13 * * 1" # Every Monday at 9AM EST
jobs:
test-parsing:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up environment
run: |
python -m pip install --upgrade pip
pip install parameterized
pip install pytest
- name: Run tests
run: pytest