circuitpython/.github/workflows/pre-commit.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
YAML
Raw Permalink Normal View History

# SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile
#
# SPDX-License-Identifier: MIT
name: pre-commit
on:
push:
2023-03-10 04:32:10 -05:00
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
2023-01-20 23:54:08 -05:00
- name: Set up repository
uses: actions/checkout@v3
with:
submodules: false
fetch-depth: 1
- name: Set up python
2022-10-11 01:15:22 -04:00
uses: actions/setup-python@v4
with:
2023-02-11 01:30:27 -05:00
python-version: 3.x
- name: Set up submodules
uses: ./.github/actions/deps/submodules
- name: Set up external
uses: ./.github/actions/deps/external
2023-01-20 23:54:08 -05:00
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y gettext uncrustify
2023-01-20 23:54:08 -05:00
- name: Run pre-commit
uses: pre-commit/action@v3.0.0
- name: Make patch
if: failure()
run: git diff > ~/pre-commit.patch
- name: Upload patch
if: failure()
2022-10-11 01:15:22 -04:00
uses: actions/upload-artifact@v3
with:
name: patch
path: ~/pre-commit.patch