diff options
| author | jgillick <j_gillick@yahoo.com> | 2020-11-17 00:02:24 -0800 |
|---|---|---|
| committer | jgillick <j_gillick@yahoo.com> | 2020-11-17 00:02:24 -0800 |
| commit | 5f0a372a2206c14e4ae206ec7cb879265aa7a38a (patch) | |
| tree | 7d0e5fd15aedbf28c5fd5a8d685928ed23146b7d /.github/workflows/pre-commit.yml | |
| parent | 119e9d38202cb26f7f04d1050263e27e1083865a (diff) | |
| parent | 42ca57ff8f19368dff97bebd9ca0ac061b219084 (diff) | |
Merge tag '6.0.0' into thunderpack1.2
Diffstat (limited to '.github/workflows/pre-commit.yml')
| -rw-r--r-- | .github/workflows/pre-commit.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml new file mode 100644 index 000000000..eac9bfe09 --- /dev/null +++ b/.github/workflows/pre-commit.yml @@ -0,0 +1,24 @@ +# SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile +# +# SPDX-License-Identifier: MIT + +name: pre-commit + +on: + pull_request: + push: + branches: [main] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + - name: set PY + run: echo >>$GITHUB_ENV PY="$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')" + - uses: actions/cache@v1 + with: + path: ~/.cache/pre-commit + key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} + - uses: pre-commit/action@v1.1.0 |
