Skip to content

Bump mio from 0.8.10 to 0.8.11 #261

Bump mio from 0.8.10 to 0.8.11

Bump mio from 0.8.10 to 0.8.11 #261

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12.1"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pre-commit
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure