Skip to content

Commit b751908

Browse files
committed
Simplify conda test Action.
1 parent 9e27412 commit b751908

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/conda_ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,20 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.python-version }}"
12+
name: "Conda"
1313
runs-on: ubuntu-latest
1414

1515
strategy:
16-
fail-fast: False
17-
matrix:
18-
python-version: ["3.6","3.7","3.8","3.9"]
1916

2017
steps:
2118
- name: Checkout 🛎️
2219
uses: "actions/checkout@v2"
20+
2321
- name: Setup Python 🐍
2422
uses: "actions/setup-python@v2"
2523
with:
26-
python-version: "${{ matrix.python-version }}"
24+
python-version: "3.8"
25+
2726
- name: Install dependencies 🔧
2827
run: |
2928
python -VV
@@ -43,4 +42,4 @@ jobs:
4342
# This mess is only necessary because conda won't fix it themselves
4443
# https://github.com/conda/conda/issues/1884
4544
python -m repo_helper build --conda --out-dir conda-bld/noarch
46-
$CONDA/bin/conda install domdf_python_tools -c local -y || exit 1
45+
$CONDA/bin/conda install domdf_python_tools -c local -y || exit 1

0 commit comments

Comments
 (0)