@@ -2,14 +2,14 @@ name: Tests
2
2
on :
3
3
push :
4
4
paths-ignore :
5
- - ' docs/**'
6
- - ' *.md'
7
- - ' *.rst'
5
+ - " docs/**"
6
+ - " *.md"
7
+ - " *.rst"
8
8
pull_request :
9
9
paths-ignore :
10
- - ' docs/**'
11
- - ' *.md'
12
- - ' *.rst'
10
+ - " docs/**"
11
+ - " *.md"
12
+ - " *.rst"
13
13
jobs :
14
14
tests :
15
15
name : ${{ matrix.name }}
@@ -18,15 +18,15 @@ jobs:
18
18
fail-fast : false
19
19
matrix :
20
20
include :
21
- - {name: Linux, python: ' 3.12' , os: ubuntu-latest, tox: py312}
22
- - {name: Windows, python: ' 3.12' , os: windows-latest, tox: py312}
23
- - {name: Mac, python: ' 3.12' , os: macos-latest, tox: py312}
24
- - {name: ' 3.11' , python: ' 3.11' , os: ubuntu-latest, tox: py311}
25
- - {name: ' 3.10' , python: ' 3.10' , os: ubuntu-latest, tox: py310}
26
- - {name: ' 3.9' , python: ' 3.9' , os: ubuntu-latest, tox: py39}
27
- - {name: ' 3.8' , python: ' 3.8' , os: ubuntu-latest, tox: py38}
28
- - {name: ' 3.7' , python: ' 3.7' , os: ubuntu-latest, tox: py37}
29
- - {name: ' PyPy3' , python: ' pypy-3.9' , os: ubuntu-latest, tox: pypy3}
21
+ - { name: Linux, python: " 3.12" , os: ubuntu-latest, tox: py312 }
22
+ - { name: Windows, python: " 3.12" , os: windows-latest, tox: py312 }
23
+ - { name: Mac, python: " 3.12" , os: macos-latest, tox: py312 }
24
+ - { name: " 3.11" , python: " 3.11" , os: ubuntu-latest, tox: py311 }
25
+ - { name: " 3.10" , python: " 3.10" , os: ubuntu-latest, tox: py310 }
26
+ - { name: " 3.9" , python: " 3.9" , os: ubuntu-latest, tox: py39 }
27
+ - { name: " 3.8" , python: " 3.8" , os: ubuntu-latest, tox: py38 }
28
+ - { name: " 3.7" , python: " 3.7" , os: ubuntu-latest, tox: py37 }
29
+ - { name: " PyPy3" , python: " pypy-3.9" , os: ubuntu-latest, tox: pypy3 }
30
30
steps :
31
31
- uses : actions/checkout@v4
32
32
- uses : actions/setup-python@v5
39
39
python -m pip install -U pip
40
40
- name : get pip cache dir
41
41
id : pip-cache
42
- run : echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
42
+ shell : bash
43
+ run : |
44
+ echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
43
45
- name : cache pip
44
46
uses : actions/cache@v4
45
47
with :
0 commit comments