Skip to content

Bump actions/checkout from 5 to 6 (#3) #10

Bump actions/checkout from 5 to 6 (#3)

Bump actions/checkout from 5 to 6 (#3) #10

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install hatch
run: |
pip install --upgrade pip
pip install hatch
- name: Run tests
run: hatch test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: "pip"
- name: Install ruff
run: |
pip install --upgrade pip
pip install ruff
- name: Check format
run: ruff check