Skip to content

Bump the github group with 3 updates #36

Bump the github group with 3 updates

Bump the github group with 3 updates #36

Workflow file for this run

name: Python tests
on:
pull_request:
branches:
- main
jobs:
test:
name: Run Python tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y python3-distro-info
- name: Install Python dependencies
run: pip install -e ".[test]"
- name: Run tests
run: python3 -m pytest tests/ -v