Skip to content

Adds python validation workflows #10

Adds python validation workflows

Adds python validation workflows #10

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 tox==4.11.3
- name: Run Tests
run: |
tox -e py39