File tree Expand file tree Collapse file tree 3 files changed +2
-24
lines changed Expand file tree Collapse file tree 3 files changed +2
-24
lines changed Original file line number Diff line number Diff line change 1
1
# Summary
2
2
3
- <!-- -
3
+ <!-- -
4
4
Provide a short summary of the changes and the reasoning behind them.
5
5
6
6
Include references to related issues (e.g. #1234 which will make a direct link to the issue).
@@ -16,3 +16,4 @@ Include @mentions to any relevant contributors and maintainers.
16
16
- [ ] Bugs fixed
17
17
- [ ] Unit tests added or updated
18
18
- [ ] E2E tests added or updated
19
+ - [ ] CI updated
Original file line number Diff line number Diff line change 6
6
- main
7
7
workflow_dispatch :
8
8
9
- permissions : # see this: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
10
- id-token : write # This is required for requesting the JWT
11
- contents : write # This is required for actions/checkout
12
-
13
9
jobs :
14
10
push :
15
11
name : Push Docker
20
16
- uses : ./.github/actions/push
21
17
with :
22
18
github-token : ${{ secrets.GITHUB_TOKEN }}
23
-
24
- tests :
25
- name : Tests
26
- runs-on : ubuntu-20-04-4-cores
27
- timeout-minutes : 35
28
- steps :
29
- - uses : actions/checkout@v4
30
- - uses : actions/setup-go@v3
31
- with :
32
- go-version : 1.20.x
33
- - name : Cache modules
34
- uses : ./.github/actions/cache/golang
35
- - name : All Tests
36
- shell : bash
37
- run : |
38
- go run build/ci.go install
39
- go test $(go list ./... | grep -v 'go-ethereum/tests/immutable') -p 1 --parallel 4 -timeout=30m
Original file line number Diff line number Diff line change 2
2
3
3
on :
4
4
pull_request :
5
- push :
6
- branches : master
7
5
8
6
concurrency :
9
7
group : PR-${{ github.head_ref }}
You can’t perform that action at this time.
0 commit comments