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 | |
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 |
-rw-r--r-- | .github/workflows/pre-commit.yml | 24 | ||||
-rw-r--r-- | .mergify.yml | 2 | ||||
-rw-r--r-- | .travis.yml | 3 |
3 files changed, 27 insertions, 2 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 diff --git a/.mergify.yml b/.mergify.yml index 57d396e..63dd7c8 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,6 +7,7 @@ pull_request_rules: conditions: - "#approved-reviews-by>=1" - "status-success=Travis CI - Pull Request" + - "status-success=pre-commit" actions: merge: method: rebase @@ -14,6 +15,7 @@ pull_request_rules: conditions: - "author=Flameeyes" - "status-success=Travis CI - Pull Request" + - "status-success=pre-commit" actions: merge: method: rebase diff --git a/.travis.yml b/.travis.yml index f2f652c..8756a8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ matrix: include: - python: 3.7 - python: 3.8 - env: PRE_COMMIT=true PYTEST_OPTIONS="--mypy --flake8" + env: PYTEST_OPTIONS="--mypy" - python: 3.9-dev install: @@ -24,4 +24,3 @@ addons: script: - pytest $PYTEST_OPTIONS - - if [[ $PRE_COMMIT ]]; then pre-commit run --all-files; fi |