Skip to content

[#112]: Initial setup for Python support #228

[#112]: Initial setup for Python support

[#112]: Initial setup for Python support #228

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