Skip to content

Fix actions concurrency #2

Fix actions concurrency

Fix actions concurrency #2

Workflow file for this run

name: Python Formatting
on: [push, pull_request]
concurrency:
group: format-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
name: Python Formatting on 'Linux'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pip install --upgrade hatch
- name: Run linting
run: hatch run lint:all