Skip to content

Bump actions/upload-artifact from 4 to 6 #4

Bump actions/upload-artifact from 4 to 6

Bump actions/upload-artifact from 4 to 6 #4

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install lint tools
run: |
python -m pip install --upgrade pip
python -m pip install ruff black
- name: Ruff (report only)
run: ruff check src tests
continue-on-error: true
- name: Black (report only)
run: black --check src tests
continue-on-error: true