Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Add ruff check

Add ruff check #1

Workflow file for this run

on: pull_request
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/setup-python@v4.7.0
with:
python-version: 3.11.3
cache: pip
cache-dependency-path: |
dev-requirements.txt
- name: Install Python requirements
run: |
pip install --upgrade pip
pip install --no-deps -r dev-requirements.txt
- name: Run checks
run: make check