Switch to unified view

a b/.github/workflows/pre-commit.yaml
1
name: pre-commit-codestyle
2
concurrency:
3
  group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
4
  cancel-in-progress: true
5
6
on: [pull_request]
7
8
jobs:
9
  pre-commit:
10
    runs-on: ubuntu-latest
11
    steps:
12
    - uses: actions/checkout@v4
13
    - uses: actions/setup-python@v5
14
    - uses: pre-commit/action@v3.0.1