Skip to content

fix: clarify in-memory provider reqs #14

fix: clarify in-memory provider reqs

fix: clarify in-memory provider reqs #14

Workflow file for this run

name: PR Python checks
on:
pull_request:
branches:
- main
permissions:
contents: read
env:
WORKING_DIR: tools/repo_parser
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
working-directory: ${{ env.WORKING_DIR }}
run: pip install -r requirements.txt
- name: Format
working-directory: ${{ env.WORKING_DIR }}
run: ruff format --check
- name: Lint
working-directory: ${{ env.WORKING_DIR }}
run: ruff check