diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-05-16 20:25:42 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-05-16 20:27:04 +0200 |
commit | 4b459d8853d089e5d4bb661c0b221cdf032ffdb2 (patch) | |
tree | 29037024f56c778f2311e0c82c8ea4c07161b4d5 /.github/workflows/pre-commit.yml | |
parent | Remove f-string prefix from strings with no placeholders. (diff) | |
download | glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar.gz glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar.bz2 glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar.lz glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar.xz glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.tar.zst glucometerutils-4b459d8853d089e5d4bb661c0b221cdf032ffdb2.zip |
Diffstat (limited to '')
-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 0000000..1168292 --- /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: [master] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + - name: set PY + run: echo "::set-env name=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 |