File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -11,30 +11,28 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
fail-fast : false
14
- matrix :
15
- python-version : ["3.10"]
16
14
17
15
steps :
18
16
- name : Checkout
19
17
uses : actions/checkout@v3
20
18
with :
21
19
fetch-depth : 0
20
+ - uses : actions/setup-python@v5
21
+ with :
22
+ python-version : " 3.12"
22
23
- name : Cache
23
24
uses : actions/cache@v3
24
25
env :
25
- cache-name : cache-all
26
+ cache-name : cache
26
27
with :
27
28
path : |
28
29
.nox
29
30
~/.cache/pre-commit
30
- key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('docs/lamin_sphinx/requirements.txt') }}-${{ hashFiles(' .pre-commit-config.yaml') }}-${{ hashFiles('pyproject.yaml') }}
31
+ key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.pre-commit-config.yaml') }}-${{ hashFiles('pyproject.yaml') }}
31
32
- name : Install pip and nox
32
33
run : |
33
34
python -m pip install --upgrade pip
34
35
pip install nox
35
- - name : Lint
36
- run : |
37
- nox -s lint
38
36
- name : Build
39
37
run : |
40
38
nox -s build
You canβt perform that action at this time.
0 commit comments