Merge pull request #119 from JacobDomagala/118-007-release #264
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: Unit Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check: | |
name: Run Unit Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.0 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest PyGithub | |
- name: Test with pytest | |
run: | | |
pytest | |