Skip to content

Adds python validation workflows #3

Adds python validation workflows

Adds python validation workflows #3

Workflow file for this run

name: Run Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest==6.1.2
- name: Run Tests
run: |
pytest