Skip to content

#patch rules check

#patch rules check #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install hatch
- name: Run checks, linting, etc.
run: |
hatch run checkup