Skip to content

build(deps): add uvloop as optional dependency for linux #29

build(deps): add uvloop as optional dependency for linux

build(deps): add uvloop as optional dependency for linux #29

Workflow file for this run

name: ci/gh-actions/ruff
on:
push:
paths-ignore:
- 'assets/**'
- 'README.md'
pull_request:
paths-ignore:
- 'assets/**'
- 'README.md'
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --select I --no-fix .
- name: Format
run: ruff format --check .