Skip to content

Commit 8d173b8

Browse files
authored
πŸ’š Fix build (#128)
* πŸ’š Fix build * πŸ’š Fix build
1 parent db66da3 commit 8d173b8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

β€Ž.github/workflows/build.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,28 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: false
14-
matrix:
15-
python-version: ["3.10"]
1614

1715
steps:
1816
- name: Checkout
1917
uses: actions/checkout@v3
2018
with:
2119
fetch-depth: 0
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: "3.12"
2223
- name: Cache
2324
uses: actions/cache@v3
2425
env:
25-
cache-name: cache-all
26+
cache-name: cache
2627
with:
2728
path: |
2829
.nox
2930
~/.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') }}
3132
- name: Install pip and nox
3233
run: |
3334
python -m pip install --upgrade pip
3435
pip install nox
35-
- name: Lint
36-
run: |
37-
nox -s lint
3836
- name: Build
3937
run: |
4038
nox -s build

0 commit comments

Comments
Β (0)