2020-05-30 05:44:57 -04:00
|
|
|
# SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
name: pre-commit
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
|
2022-01-25 14:40:25 -05:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-05-30 05:44:57 -04:00
|
|
|
jobs:
|
|
|
|
pre-commit:
|
2022-09-06 22:16:45 -04:00
|
|
|
runs-on: ubuntu-22.04
|
2020-05-30 05:44:57 -04:00
|
|
|
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
|
2021-12-20 19:28:09 -05:00
|
|
|
with:
|
2022-11-13 10:26:16 -05:00
|
|
|
python-version: "3.x"
|
2023-01-20 23:54:08 -05:00
|
|
|
- name: CircuitPython dependencies
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ github.job }}
|
|
|
|
- name: Install dependencies
|
2021-03-15 09:56:29 -04:00
|
|
|
run: |
|
2021-10-06 08:54:36 -04:00
|
|
|
sudo apt-get install -y gettext uncrustify
|
|
|
|
pip3 install black polib pyyaml
|
2023-01-20 23:54:08 -05:00
|
|
|
- name: Run pre-commit
|
|
|
|
uses: pre-commit/action@v3.0.0
|
2021-10-06 08:54:36 -04:00
|
|
|
- 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
|
2021-10-06 08:54:36 -04:00
|
|
|
with:
|
|
|
|
name: patch
|
|
|
|
path: ~/pre-commit.patch
|