Skip to content

build: get build working on python 3.11 #293

build: get build working on python 3.11

build: get build working on python 3.11 #293

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pre-commit==3.6.0
- name: Lint
run: pre-commit run --all-files