This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
Merge pull request #300 from kjaymiller/update-tools #335
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
# name: Test | |
on: | |
# when pushed on main | |
push: | |
branches: [ main ] | |
# when a pull request is opened | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
cache: 'pip' | |
- name: Test | |
run: | | |
pip install -r requirements.txt | |
python -m pytest |