Skip to content

Commit ffe9208

Browse files
committed
Updated files with git_helper.
1 parent 2708d58 commit ffe9208

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/docs_test_action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ jobs:
77
docs:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v1
11-
- uses: ammaraskar/sphinx-action@master
10+
- name: Checkout 🛎️
11+
uses: "actions/checkout@v1"
12+
- name: Install and Build 🔧
13+
uses: ammaraskar/sphinx-action@master
1214
with:
1315
pre-build-command: python -m pip install tox
1416
docs-folder: "doc-source/"

.github/workflows/python_ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ jobs:
2121

2222

2323
steps:
24-
- uses: "actions/checkout@v2"
25-
- uses: "actions/setup-python@v1"
24+
- name: Checkout 🛎️
25+
uses: "actions/checkout@v2"
26+
- name: Setup Python 🐍
27+
uses: "actions/setup-python@v1"
2628
with:
2729
python-version: "${{ matrix.python-version }}"
28-
- name: "Install dependencies"
30+
- name: Install dependencies 🔧
2931
run: |
3032
python -VV
3133
python -m site
3234
python -m pip install --upgrade pip setuptools wheel
3335
python -m pip install --upgrade tox tox-gh-actions
3436
35-
- name: "Run tox targets for ${{ matrix.python-version }}"
37+
- name: "Run Tests for Python ${{ matrix.python-version }}"
3638
run: "python -m tox"

.github/workflows/python_ci_macos.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ jobs:
2121

2222

2323
steps:
24-
- uses: "actions/checkout@v2"
25-
- uses: "actions/setup-python@v1"
24+
- name: Checkout 🛎️
25+
uses: "actions/checkout@v2"
26+
- name: Setup Python 🐍
27+
uses: "actions/setup-python@v1"
2628
with:
2729
python-version: "${{ matrix.python-version }}"
28-
- name: "Install dependencies"
30+
- name: Install dependencies 🔧
2931
run: |
3032
python -VV
3133
python -m site
3234
python -m pip install --upgrade pip setuptools wheel
3335
python -m pip install --upgrade tox tox-gh-actions
3436
35-
- name: "Run tox targets for ${{ matrix.python-version }}"
37+
- name: "Run Tests for Python ${{ matrix.python-version }}"
3638
run: "python -m tox"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ basepython = python3.6
9393
skip_install = true
9494
ignore_errors=true
9595
changedir={toxinidir}
96-
deps = git+https://github.com/timothycrosley/isort.git
96+
deps = git+https://github.com/timothycrosley/isort.git@6ffdc23d95e27f8a3637a1b77c7049ed62222272
9797
commands = isort domdf_python_tools tests
9898

9999

0 commit comments

Comments
 (0)