Skip to content

add modifications for 2024 session #6

add modifications for 2024 session

add modifications for 2024 session #6

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test-full:
name: Run CI Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python --version
- name: Install dependencies
run: python -m pip install ".[test]"
- name: Run unit tests
run: python -m pytest
- name: Run linting tests
run: |
black --check .
isort --check .