Skip to content

chore: bump GitHub Actions(deps): bump actions/checkout from 6.0.2 to 7.0.0 #68

chore: bump GitHub Actions(deps): bump actions/checkout from 6.0.2 to 7.0.0

chore: bump GitHub Actions(deps): bump actions/checkout from 6.0.2 to 7.0.0 #68

Workflow file for this run

name: Run linters
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # 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