Skip to content

Commit e7bf3d0

Browse files
PR build action
1 parent 5e82eaf commit e7bf3d0

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/pr-build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,23 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Set up Go 1.x
16-
uses: actions/setup-go@v2
16+
uses: actions/setup-go@v5
1717
with:
1818
go-version: 1.20.7
1919
id: go
2020

2121
- name: Checkout mx-chain-go
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
repository: 'multiversx/mx-chain-go'
2525
ref: 'feat/chain-go-sdk'
2626
path: 'mx-chain-go'
2727

28-
- name: Check out code into the Go module directory
29-
uses: actions/checkout@v2
28+
- name: Checkout mx-chain-simulator-go
29+
uses: actions/checkout@v4
30+
with:
31+
repository: 'multiversx/mx-chain-simulator-go'
32+
path: 'mx-chain-simulator-go'
3033

3134
- name: Get dependencies
3235
run: |
@@ -37,5 +40,5 @@ jobs:
3740
fi
3841
- name: Build
3942
run: |
40-
cd cmd/chainsimulator
43+
cd mx-chain-simulator-go/cmd/chainsimulator
4144
go build

0 commit comments

Comments
 (0)