Skip to content

Bump pyproject version number #39

Bump pyproject version number

Bump pyproject version number #39

Workflow file for this run

name: Python Unit Tests CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Dependencies
working-directory: ./
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Format
uses: psf/black@stable
- name: Run Tests
working-directory: ./
run: python -m pytest .