Skip to content

Commit 805b707

Browse files
conbonconbon
authored andcommitted
fix: ei-2934 - adding go setup to github action & uncommenting make target dependency
1 parent 8cab8e4 commit 805b707

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
- name: Check out repository
3131
uses: actions/checkout@v3
3232
continue-on-error: true
33+
- name: Setup Golang
34+
uses: actions/setup-go@v5
35+
with:
36+
go-version: '1.20'
3337
- name: Generate client (stubs) files
3438
# Install all dependencies and generate API stubs.
3539
run: make build

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ verify-import: deps-py
9898
source "$(VENV_PATH)"/"$(VENV_PATH_DIR)"/activate \
9999
&& python -c 'from iotics.lib.grpc import IoticsApi'
100100

101-
run-examples: #deps-py
101+
run-examples: deps-py
102102
source "$(VENV_PATH)"/"$(VENV_PATH_DIR)"/activate \
103103
&& python examples/search_twin_models.py \
104104
&& python examples/search_location.py \

0 commit comments

Comments
 (0)