release date #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |