File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-markdown-task.md
2
2
name : Check Markdown
3
3
4
+ env :
5
+ # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
+ GO_VERSION : " 1.17"
7
+
4
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
5
9
on :
6
10
push :
56
60
- name : Checkout repository
57
61
uses : actions/checkout@v3
58
62
63
+ - name : Install Go
64
+ uses : actions/setup-go@v4
65
+ with :
66
+ go-version : ${{ env.GO_VERSION }}
67
+
59
68
- name : Install Task
60
69
uses : arduino/setup-task@v1
61
70
with :
Original file line number Diff line number Diff line change 2
2
name : Deploy Website
3
3
4
4
env :
5
+ # See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
+ GO_VERSION : " 1.17"
5
7
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
6
8
PYTHON_VERSION : " 3.9"
7
9
54
56
- name : Checkout repository
55
57
uses : actions/checkout@v3
56
58
59
+ - name : Install Go
60
+ uses : actions/setup-go@v4
61
+ with :
62
+ go-version : ${{ env.GO_VERSION }}
63
+
57
64
- name : Install Python
58
65
uses : actions/setup-python@v4
59
66
with :
You can’t perform that action at this time.
0 commit comments