Skip to content

Bump astral-sh/ruff-action from 3.5.1 to 3.6.1 #82

Bump astral-sh/ruff-action from 3.5.1 to 3.6.1

Bump astral-sh/ruff-action from 3.5.1 to 3.6.1 #82

Workflow file for this run

---
name: Python Tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
jobs:
pytest:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
platform-version:
- "ubuntu-24.04"
include:
# Python 3.7 only runs on Ubuntu 22.04
- python-version: "3.7"
platform-version: "ubuntu-22.04"
runs-on: ${{ matrix.platform-version }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install pytest
- name: Test with pytest
run: |
pytest
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install ruff based off pyproject.toml
uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1
with:
version-file: "pyproject.toml"
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[lint,test]
- name: Run MyPy
run: |
mypy .