summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-02-08 12:41:31 -0800
committerDavid Lord <davidism@gmail.com>2021-02-08 12:41:31 -0800
commitcc54113894d97a188e9be3c2febe3b199d46ae15 (patch)
treea94c005debf3d2a815341f191d3221d864396104 /.github/workflows
parent5421fe6801630bea21a27e28251c140f51a69c91 (diff)
downloadclick-cc54113894d97a188e9be3c2febe3b199d46ae15.tar.gz
remove pre-commit ci env, using pre-commit.ci
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yaml6
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 0cd5fda..2291f44 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -23,7 +23,6 @@ jobs:
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
- {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3}
- - {name: Style, python: '3.9', os: ubuntu-latest, tox: style}
- {name: Docs, python: '3.9', os: ubuntu-latest, tox: docs}
steps:
- uses: actions/checkout@v2
@@ -43,11 +42,6 @@ jobs:
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('requirements/*.txt') }}
- - name: cache pre-commit
- uses: actions/cache@v1
- with:
- path: ~/.cache/pre-commit
- key: pre-commit|${{ matrix.python }}|${{ hashFiles('.pre-commit-config.yaml') }}
if: matrix.tox == 'style'
- run: pip install tox
- run: tox -e ${{ matrix.tox }}