Skip to content

Update .pre-commit-config.yaml #35

Update .pre-commit-config.yaml

Update .pre-commit-config.yaml #35

---
name: Check Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Check the code
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: 📦 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pre-commit
uses: pre-commit/[email protected]