Skip to content

Commit 7773fbd

Browse files
authored
revert: 'ci: condition 'e2e.yml' on 'rust.yml' (#120)' (#121)
* ci: condition e2e.yml on rust.yml * ci: attempted fix * Revert "ci: attempted fix" This reverts commit 1d0535d. * Revert "ci: condition e2e.yml on rust.yml" This reverts commit fdb3fba. * Revert "ci: condition e2e.yml on rust.yml" This reverts commit fdb3fba.
1 parent b9eaec5 commit 7773fbd

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.github/workflows/e2e.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
name: e2e
22
on:
3-
workflow_run:
4-
workflows: [rust]
5-
types:
6-
- completed
3+
push:
4+
branches: [main]
5+
pull_request:
6+
paths:
7+
- '**.rs'
8+
- '**.go'
9+
- '**.toml'
10+
- '**.lock'
11+
- '**.mod'
12+
- '**.sum'
13+
- '.github/workflows/e2e.yml'
714
permissions:
815
contents: read
916
jobs:
@@ -13,7 +20,7 @@ jobs:
1320
steps:
1421
- uses: actions/setup-go@v4
1522
with:
16-
go-version: "1.22"
23+
go-version: "1.21"
1724
- uses: actions/checkout@v3
1825
- name: golangci-lint
1926
uses: golangci/golangci-lint-action@v3.7.0
@@ -57,7 +64,7 @@ jobs:
5764
- name: Setup Go
5865
uses: actions/setup-go@v4
5966
with:
60-
go-version: "1.22"
67+
go-version: "1.21"
6168
check-latest: true
6269
cache-dependency-path: |
6370
e2e/interchaintest/go.sum

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88
paths-ignore:
99
- '**/*.md'
10-
- 'docs/**'
10+
- '**/*.go'
1111

1212
jobs:
1313
build-wasm:

0 commit comments

Comments
 (0)