diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-10-04 21:20:02 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-10-04 21:22:14 +0200 |
commit | 1d2065cbe01ae6ce75939f1f61438904f0ec487f (patch) | |
tree | 37327bdc02be48b91eb13275d0447c907253991a | |
parent | Make sure to install usbmon-tools when enabling tools. (diff) | |
download | freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar.gz freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar.bz2 freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar.lz freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar.xz freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.tar.zst freestyle-hid-1d2065cbe01ae6ce75939f1f61438904f0ec487f.zip |
-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..9663103 --- /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 "::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 |