Skip to content

chore: bump GitHub Actions(deps): bump actions/upload-artifact from 6.0.0 to 7.0.0 #56

chore: bump GitHub Actions(deps): bump actions/upload-artifact from 6.0.0 to 7.0.0

chore: bump GitHub Actions(deps): bump actions/upload-artifact from 6.0.0 to 7.0.0 #56

Workflow file for this run

name: Run linters
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Set up Python 3.11
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
with:
python-version: '3.11'
- name: Install hatch
run: |
pip install hatch
- name: Check code style
run: hatch run style:code
- name: Check docstrings
run: hatch run style:docstrings