summaryrefslogtreecommitdiff
path: root/.github/workflows/tox.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/tox.yml')
-rw-r--r--.github/workflows/tox.yml12
1 files changed, 1 insertions, 11 deletions
diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml
index 18306f7..08cbb49 100644
--- a/.github/workflows/tox.yml
+++ b/.github/workflows/tox.yml
@@ -67,30 +67,20 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
- tox-env: [flake8, pep517check, checkspelling, checklinks]
+ tox-env: [flake8, pep517check, checkspelling]
env:
TOXENV: ${{ matrix.tox-env }}
- # Allow checklinks to fail
- continue-on-error: ${{ matrix.tox-env == 'checklinks' }}
-
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- - name: Setup Node
- if: ${{ matrix.tox-env == 'checklinks' }}
- uses: actions/setup-node@v2
- with:
- node-version: '10'
- # cache: npm
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox
- if [[ "$TOXENV" == 'checklinks' ]]; then npm install -g markdown-link-check; fi
if [[ "$TOXENV" == 'checkspelling' ]]; then sudo apt-get install aspell aspell-en; fi
- name: Run tox
run: python -m tox