File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 7
7
docs :
8
8
runs-on : ubuntu-latest
9
9
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
12
14
with :
13
15
pre-build-command : python -m pip install tox
14
16
docs-folder : " doc-source/"
Original file line number Diff line number Diff line change @@ -21,16 +21,18 @@ jobs:
21
21
22
22
23
23
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"
26
28
with :
27
29
python-version : " ${{ matrix.python-version }}"
28
- - name : " Install dependencies"
30
+ - name : Install dependencies 🔧
29
31
run : |
30
32
python -VV
31
33
python -m site
32
34
python -m pip install --upgrade pip setuptools wheel
33
35
python -m pip install --upgrade tox tox-gh-actions
34
36
35
- - name : " Run tox targets for ${{ matrix.python-version }}"
37
+ - name : " Run Tests for Python ${{ matrix.python-version }}"
36
38
run : " python -m tox"
Original file line number Diff line number Diff line change @@ -21,16 +21,18 @@ jobs:
21
21
22
22
23
23
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"
26
28
with :
27
29
python-version : " ${{ matrix.python-version }}"
28
- - name : " Install dependencies"
30
+ - name : Install dependencies 🔧
29
31
run : |
30
32
python -VV
31
33
python -m site
32
34
python -m pip install --upgrade pip setuptools wheel
33
35
python -m pip install --upgrade tox tox-gh-actions
34
36
35
- - name : " Run tox targets for ${{ matrix.python-version }}"
37
+ - name : " Run Tests for Python ${{ matrix.python-version }}"
36
38
run : " python -m tox"
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ basepython = python3.6
93
93
skip_install = true
94
94
ignore_errors =true
95
95
changedir ={toxinidir}
96
- deps = git+https://github.com/timothycrosley/isort.git
96
+ deps = git+https://github.com/timothycrosley/isort.git@6ffdc23d95e27f8a3637a1b77c7049ed62222272
97
97
commands = isort domdf_python_tools tests
98
98
99
99
You can’t perform that action at this time.
0 commit comments