Skip to content

Commit

Permalink
fix ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Aug 17, 2024
1 parent 685e400 commit 7e19c60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- name: checkout interchaintest
uses: actions/checkout@v4

- name: Go Mod Cache
uses: actions/cache@v2
with:
Expand All @@ -37,9 +40,6 @@ jobs:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: checkout interchaintest
uses: actions/checkout@v4

- name: Download Go Dependencies
run: |
go mod download
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- name: checkout interchaintest
uses: actions/checkout@v4

- name: Go Mod Cache
uses: actions/cache@v2
with:
Expand All @@ -41,9 +44,6 @@ jobs:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: checkout interchaintest
uses: actions/checkout@v4

- name: Download Go Dependencies
run: |
go mod download
Expand Down

0 comments on commit 7e19c60

Please sign in to comment.