Skip to content

CI

CI #6

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
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