Skip to content

fix: fixed used python version #2

fix: fixed used python version

fix: fixed used python version #2

name: check_lint
on:
push:
pull_request:
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Check formatting
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install tox
run: python -m pip install '.[test]'
- name: Run test suite
run: tox -e lint