Browse Source

Run checks on only one python version

pull/10109/head
dolfies 3 years ago
parent
commit
5b99b53b8b
  1. 2
      .github/workflows/build.yml
  2. 2
      .github/workflows/lint.yml
  3. 2
      .github/workflows/test.yml

2
.github/workflows/build.yml

@ -11,7 +11,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [ '3.8', '3.x' ] python-version: [ '3.8' ]
name: dists & docs ${{ matrix.python-version }} name: dists & docs ${{ matrix.python-version }}
steps: steps:

2
.github/workflows/lint.yml

@ -11,7 +11,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [ '3.8', '3.x' ] python-version: [ '3.8' ]
name: check ${{ matrix.python-version }} name: check ${{ matrix.python-version }}
steps: steps:

2
.github/workflows/test.yml

@ -11,7 +11,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [ '3.8', '3.x' ] python-version: [ '3.8' ]
name: pytest ${{ matrix.python-version }} name: pytest ${{ matrix.python-version }}
steps: steps:

Loading…
Cancel
Save