Some checks failed
Pip / build (ubuntu-24.04-arm, 3.11) (push) Has been cancelled
Pip / build (ubuntu-24.04-arm, 3.12) (push) Has been cancelled
Pip / build (ubuntu-24.04-arm, 3.13) (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Wheels / Build SDist (push) Has been cancelled
Wheels / Wheels on ubuntu-24.04-arm (push) Has been cancelled
Wheels / Upload release (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
898 B
YAML
40 lines
898 B
YAML
# SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: pre-commit
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
pre-commit:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Set up repository
|
|
uses: actions/checkout@v5
|
|
with:
|
|
submodules: false
|
|
show-progress: false
|
|
fetch-depth: 1
|
|
persist-credentials: false
|
|
- name: Set up python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.x
|
|
- name: Run pre-commit
|
|
uses: pre-commit/action@v3.0.1
|
|
- name: Make patch
|
|
if: failure()
|
|
run: git diff > ~/pre-commit.patch
|
|
- name: Upload patch
|
|
if: failure()
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: patch
|
|
path: ~/pre-commit.patch
|