Skip to content

Commit

Permalink
Update workflows with Go version (#446)
Browse files Browse the repository at this point in the history
update workflows
  • Loading branch information
cicr99 authored Oct 23, 2023
1 parent 4395faa commit e31b591
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main_ci_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ jobs:
- 5050:5050

steps:
- uses: actions/checkout@v3
- name: Checkout branch
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version-file: go.mod

- name: wait for devnet to be up...
run: ./.bin/devnet.sh
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ jobs:
- 5050:5050

steps:
- uses: actions/checkout@v3
- name: Checkout branch
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version-file: go.mod

- name: wait for devnet to be up...
run: ./.bin/devnet.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_account.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
- name: Checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4.1.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test_rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ jobs:
- 5050:5050

steps:
- uses: actions/checkout@v3
- name: Checkout branch
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version-file: go.mod

- name: wait for devnet to be up...
run: ./.bin/devnet.sh
Expand Down

0 comments on commit e31b591

Please sign in to comment.