Skip to content

Commit 4b05888

Browse files
Updated files with 'repo_helper'. (#9)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent ca20981 commit 4b05888

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

โ€Ž.github/workflows/conda_ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
name: "Conda"
1313
runs-on: ubuntu-latest
1414

15-
strategy:
16-
1715
steps:
1816
- name: Checkout ๐Ÿ›Ž๏ธ
1917
uses: "actions/checkout@v2"
@@ -41,5 +39,6 @@ jobs:
4139
run: |
4240
# This mess is only necessary because conda won't fix it themselves
4341
# https://github.com/conda/conda/issues/1884
42+
4443
python -m repo_helper build --conda --out-dir conda-bld/noarch
4544
$CONDA/bin/conda install domdf_python_tools -c local -y || exit 1

โ€Ž.github/workflows/python_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,18 @@ jobs:
2222
steps:
2323
- name: Checkout ๐Ÿ›Ž๏ธ
2424
uses: "actions/checkout@v2"
25+
2526
- name: Setup Python ๐Ÿ
2627
uses: "actions/setup-python@v2"
2728
with:
2829
python-version: "${{ matrix.python-version }}"
30+
2931
- name: Install dependencies ๐Ÿ”ง
3032
run: |
3133
python -VV
3234
python -m site
3335
python -m pip install --upgrade pip setuptools wheel
3436
python -m pip install --upgrade tox tox-gh-actions virtualenv
3537
36-
3738
- name: "Run Tests for Python ${{ matrix.python-version }}"
3839
run: "python -m tox"

โ€Ž.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ jobs:
2222
steps:
2323
- name: Checkout ๐Ÿ›Ž๏ธ
2424
uses: "actions/checkout@v2"
25+
2526
- name: Setup Python ๐Ÿ
2627
uses: "actions/setup-python@v2"
2728
with:
2829
python-version: "${{ matrix.python-version }}"
30+
2931
- name: Install dependencies ๐Ÿ”ง
3032
run: |
3133
python -VV

โ€Ž.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,18 @@ jobs:
2222
steps:
2323
- name: Checkout ๐Ÿ›Ž๏ธ
2424
uses: "actions/checkout@v2"
25+
2526
- name: Setup Python ๐Ÿ
2627
uses: "actions/setup-python@v2"
2728
with:
2829
python-version: "${{ matrix.python-version }}"
30+
2931
- name: Install dependencies ๐Ÿ”ง
3032
run: |
3133
python -VV
3234
python -m site
3335
python -m pip install --upgrade pip setuptools wheel
3436
python -m pip install --upgrade tox tox-gh-actions virtualenv
3537
36-
3738
- name: "Run Tests for Python ${{ matrix.python-version }}"
3839
run: "python -m tox"

0 commit comments

Comments
ย (0)