Skip to content

Merge main into sweep/add-github-actions-workflow_2 #28

Merge main into sweep/add-github-actions-workflow_2

Merge main into sweep/add-github-actions-workflow_2 #28

Workflow file for this run

name: Python Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install pytest
run: pip install pytest
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run pytest
run: pytest