Skip to content

📝️Update readme #8

📝️Update readme

📝️Update readme #8

Workflow file for this run

name: check_codebase
on:
push:
pull_request:
jobs:
check:
name: Check code base
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- 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
python -m pip install ruff==0.3.4
- name: Check format with ruff
run: ruff format
- name: Lint with ruff
run: ruff check --output-format=github