We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439f69c commit 0bd56b6Copy full SHA for 0bd56b6
.github/workflows/build.yaml
@@ -20,10 +20,6 @@ name: build
20
on:
21
push:
22
23
-env:
24
- POETRY_VERSION: '1.8.5'
25
- PYTHON_VERSION: '3.12'
26
-
27
jobs:
28
build:
29
runs-on: ubuntu-latest
@@ -39,11 +35,10 @@ jobs:
39
35
- name: Set up Python
40
36
uses: actions/setup-python@v5
41
37
with:
42
- python-version: env.PYTHON_VERSION
38
+ python-version: '3.12'
43
- name: Run pre-commit (all files)
44
run: |
45
- pip install --no-cache-dir poetry==env.POETRY_VERSION
46
- poetry install --no-root --no-directory --with docs
+ pip install --no-cache-dir poetry=='1.8.5'
47
poetry run pre-commit run --all-files
48
- name: Docker build
49
uses: docker/build-push-action@v6
0 commit comments