Skip to content

Update README.md

Update README.md #68

Workflow file for this run

name: Ruff Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org/ | python
- name: Install dependencies
run: |
poetry install
- name: Run Ruff
env:
RUFF_PATH: .
run: |
poetry run ruff .