File tree Expand file tree Collapse file tree 8 files changed +1022
-1032
lines changed Expand file tree Collapse file tree 8 files changed +1022
-1032
lines changed Original file line number Diff line number Diff line change 1+ # See: https://git-scm.com/docs/gitattributes
2+
3+ # Disable Git converting line endings in files (i.e., core.autocrlf=true).
4+ * - text
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ name: Check Website
44env :
55 # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66 GO_VERSION : " 1.17"
7- # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
8- PYTHON_VERSION : " 3.9"
97
108# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
119on :
8886 - name : Install Python
8987 uses : actions/setup-python@v5
9088 with :
91- python-version : ${{ env.PYTHON_VERSION }}
89+ python-version-file : pyproject.toml
9290
9391 - name : Install Poetry
9492 run : pip install poetry
Original file line number Diff line number Diff line change 11# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-python-task.md
22name : Check Python
33
4- env :
5- # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
6- PYTHON_VERSION : " 3.9"
7-
84# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
95on :
106 create :
7369 - name : Install Python
7470 uses : actions/setup-python@v5
7571 with :
76- python-version : ${{ env.PYTHON_VERSION }}
72+ python-version-file : pyproject.toml
7773
7874 - name : Install Poetry
7975 run : pip install poetry
@@ -104,7 +100,7 @@ jobs:
104100 - name : Install Python
105101 uses : actions/setup-python@v5
106102 with :
107- python-version : ${{ env.PYTHON_VERSION }}
103+ python-version-file : pyproject.toml
108104
109105 - name : Install Poetry
110106 run : pip install poetry
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ name: Deploy Website
44env :
55 # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66 GO_VERSION : " 1.17"
7- # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
8- PYTHON_VERSION : " 3.9"
97
108on :
119 push :
7674 - name : Install Python
7775 uses : actions/setup-python@v5
7876 with :
79- python-version : ${{ env.PYTHON_VERSION }}
77+ python-version-file : pyproject.toml
8078
8179 - name : Install Poetry
8280 run : |
Original file line number Diff line number Diff line change 11# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
22name : Spell Check
33
4- env :
5- # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
6- PYTHON_VERSION : " 3.9"
7-
84# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
95on :
106 create :
5551 - name : Install Python
5652 uses : actions/setup-python@v5
5753 with :
58- python-version : ${{ env.PYTHON_VERSION }}
54+ python-version-file : pyproject.toml
5955
6056 - name : Install Poetry
6157 run : pip install poetry
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ name: Test Integration
44env :
55 # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66 GO_VERSION : " 1.17"
7- # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
8- PYTHON_VERSION : " 3.9"
97
108# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
119on :
8886 - name : Install Python
8987 uses : actions/setup-python@v5
9088 with :
91- python-version : ${{ env.PYTHON_VERSION }}
89+ python-version-file : pyproject.toml
9290
9391 - name : Install Poetry
9492 run : pip install poetry
You can’t perform that action at this time.
0 commit comments