File tree 2 files changed +9
-7
lines changed
{{ cookiecutter.project_name_dashed }}/.github
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
- {% raw %} ---
1
+ ---
2
2
name : Setup Python and Poetry Action
3
3
description : Configure system, Python, Poetry and deps and cache management.
4
4
7
7
default : ubuntu-latest
8
8
description : The operating system to use
9
9
python-version :
10
- default : ' 3.11 '
10
+ default : ' {{ cookiecutter.python_version }} '
11
11
description : The version of Python to use
12
12
poetry-version :
13
13
default : ' 1.8.2'
26
26
- uses : ' actions/setup-python@v5'
27
27
id : setup-python
28
28
with :
29
- python-version : ' $ {{ inputs.python-version }}'
30
-
29
+ python-version : ' {{ cookiecutter.python_version }}'
30
+ {% raw %}
31
31
- name : Setup pipx environment Variables
32
32
id : pipx-env-setup
33
33
# pipx default home and bin dir are not writable by the cache action
89
89
if : steps.poetry-cache.outputs.cache-hit != 'true'
90
90
shell : bash
91
91
run : poetry install ${{ inputs.poetry-install-options }} --no-interaction
92
- ...{% endraw %}
92
+ {% endraw %}
93
+ ...
94
+
Original file line number Diff line number Diff line change 26
26
uses : ./.github/actions/setup/poetry
27
27
with :
28
28
{% raw %}os: ${{ job.os }}{% endraw %}
29
- python-version : ' 3.11 '
29
+ python-version : ' {{ cookiecutter.python_version }} '
30
30
poetry-install-options : " --only=vulnerability --no-root"
31
31
poetry-export-options : " --only=vulnerability"
32
32
47
47
uses : ./.github/actions/setup/poetry
48
48
with :
49
49
{% raw %}os: ${{ job.os }}{% endraw %}
50
- python-version : ' 3.11 '
50
+ python-version : ' {{ cookiecutter.python_version }} '
51
51
poetry-install-options : " --only=vulnerability --no-root"
52
52
poetry-export-options : " --only=vulnerability"
53
53
You can’t perform that action at this time.
0 commit comments