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:
|
2022-10-11 01:15:22 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-20 19:28:09 -05:00
|
|
|
- name: Set up Python 3
|
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"
|
2021-01-08 19:21:27 -05:00
|
|
|
- name: Install deps
|
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
|
2021-01-08 19:54:02 -05:00
|
|
|
- name: Populate selected submodules
|
|
|
|
run: git submodule update --init extmod/ulab
|
2021-03-15 09:56:29 -04:00
|
|
|
- name: Set PY
|
2020-10-08 14:58:45 -04:00
|
|
|
run: echo >>$GITHUB_ENV PY="$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')"
|
2022-10-11 01:15:22 -04:00
|
|
|
- uses: actions/cache@v3
|
2020-05-30 05:44:57 -04:00
|
|
|
with:
|
|
|
|
path: ~/.cache/pre-commit
|
|
|
|
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
|
2022-10-11 01:15:22 -04:00
|
|
|
- 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
|