Skip to content

small refactor per ruff suggestion, breaking out try/except to be mor… #3

small refactor per ruff suggestion, breaking out try/except to be mor…

small refactor per ruff suggestion, breaking out try/except to be mor… #3

Workflow file for this run

name: ci_testing
on:
push:
pull_request:
jobs:
run-tests:
name: Test Python
runs-on: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: python -m pip install '.[test]'
- name: Run tests
run: pytest