Skip to content

Commit

Permalink
fix: ei-2934 - adding go setup to github action & uncommenting make t…
Browse files Browse the repository at this point in the history
…arget dependency
  • Loading branch information
conbon committed May 30, 2024
1 parent 8cab8e4 commit 4e4ad21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
continue-on-error: true
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Generate client (stubs) files
# Install all dependencies and generate API stubs.
run: make build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ verify-import: deps-py
source "$(VENV_PATH)"/"$(VENV_PATH_DIR)"/activate \
&& python -c 'from iotics.lib.grpc import IoticsApi'

run-examples: #deps-py
run-examples: deps-py
source "$(VENV_PATH)"/"$(VENV_PATH_DIR)"/activate \
&& python examples/search_twin_models.py \
&& python examples/search_location.py \
Expand Down

0 comments on commit 4e4ad21

Please sign in to comment.