Skip to content

Replace sync open() calls within async functions with aiofiles.open() in code examples #12

Replace sync open() calls within async functions with aiofiles.open() in code examples

Replace sync open() calls within async functions with aiofiles.open() in code examples #12

Workflow file for this run

# https://beta.ruff.rs
name: ruff
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install --user codespell[toml] ruff
- run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po"
- run: ruff --format=github --select=ASYNC,E9,F63,F7,F82 --target-version=py38 .