Skip to content

Merge pull request #119 from JacobDomagala/118-007-release #264

Merge pull request #119 from JacobDomagala/118-007-release

Merge pull request #119 from JacobDomagala/118-007-release #264

Workflow file for this run

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