File tree Expand file tree Collapse file tree 13 files changed +165
-137
lines changed Expand file tree Collapse file tree 13 files changed +165
-137
lines changed Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- development
6
- paths :
7
- - .github/workflows/build.yml
8
- - " **/*.go"
9
- - " chain/**"
10
- - " cmd/**"
11
- - " dot/**"
12
- - " internal/**"
13
- - " lib/**"
14
- - " pkg/**"
15
- - " tests/**"
16
- - .dockerignore
17
- - .codecov.yml
18
- - Dockerfile
19
- - go.mod
20
- - go.sum
21
- - Makefile
6
+ # Commented paths to avoid skipping required workflow
7
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
8
+ # paths:
9
+ # - .github/workflows/build.yml
10
+ # - "**/*.go"
11
+ # - "chain/**"
12
+ # - "cmd/**"
13
+ # - "dot/**"
14
+ # - "internal/**"
15
+ # - "lib/**"
16
+ # - "pkg/**"
17
+ # - "tests/**"
18
+ # - .dockerignore
19
+ # - .codecov.yml
20
+ # - Dockerfile
21
+ # - go.mod
22
+ # - go.sum
23
+ # - Makefile
22
24
23
25
jobs :
24
26
builds :
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/checks.yml
5
- - .github/PULL_REQUEST/pull_request.go
6
- - .golangci.yml
7
- - " **/*.go"
8
- - go.mod
9
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/checks.yml
7
+ # - .github/PULL_REQUEST/pull_request.go
8
+ # - .golangci.yml
9
+ # - "**/*.go"
10
+ # - go.mod
11
+ # - go.sum
10
12
11
13
name : checks
12
14
env :
27
29
28
30
check-description :
29
31
name : Checks PR has title and body description
30
- if : ${{ github.actor != 'dependabot[bot]' }}
32
+ # Commented to avoid skipping required workflow
33
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
34
+ # if: ${{ github.actor != 'dependabot[bot]' }}
31
35
runs-on : ubuntu-latest
32
36
steps :
33
37
- uses : actions/setup-go@v2
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/code-cov.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/**"
13
- - .codecov.yml
14
- - go.mod
15
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/code-cov.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/**"
15
+ # - .codecov.yml
16
+ # - go.mod
17
+ # - go.sum
16
18
name : code-cov
17
19
env :
18
20
GO111MODULE : on
Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
branches :
5
5
- development
6
- paths :
7
- - .github/workflows/copyright.yml
8
- - " **/*.go"
9
- - " **/*.proto"
6
+ # Commented paths to avoid skipping required workflow
7
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
8
+ # paths:
9
+ # - .github/workflows/copyright.yml
10
+ # - "**/*.go"
11
+ # - "**/*.proto"
10
12
11
13
jobs :
12
14
copyright-check :
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/docker-grandpa.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/stress/**"
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/docker-grandpa.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/stress/**"
15
+ # - go.mod
16
+ # - go.sum
15
17
name : docker-grandpa
16
18
env :
17
19
GO111MODULE : on
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/docker-js.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/polkadotjs_test/**"
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/docker-js.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/polkadotjs_test/**"
15
+ # - go.mod
16
+ # - go.sum
15
17
name : docker-js
16
18
env :
17
19
GO111MODULE : on
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/docker-rpc.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/rpc/**"
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/docker-rpc.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/rpc/**"
15
+ # - go.mod
16
+ # - go.sum
15
17
name : docker-rpc
16
18
env :
17
19
GO111MODULE : on
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/docker-stable.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - scripts/integration-test-all.sh
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/docker-stable.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - scripts/integration-test-all.sh
15
+ # - go.mod
16
+ # - go.sum
15
17
name : docker-stable
16
18
env :
17
19
GO111MODULE : on
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/docker-stress.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/stress/**"
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/docker-stress.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/stress/**"
15
+ # - go.mod
16
+ # - go.sum
15
17
name : docker-stress
16
18
env :
17
19
GO111MODULE : on
Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- development
6
- paths :
7
- - .github/workflows/docs.yml
8
- - " docs/**"
6
+ # Commented paths to avoid skipping required workflow
7
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
8
+ # paths:
9
+ # - .github/workflows/docs.yml
10
+ # - "docs/**"
9
11
10
12
jobs :
11
13
build :
Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
- paths :
4
- - .github/workflows/integration-tests.yml
5
- - " **/*.go"
6
- - " chain/**"
7
- - " cmd/**"
8
- - " dot/**"
9
- - " internal/**"
10
- - " lib/**"
11
- - " pkg/**"
12
- - " tests/**"
13
- - go.mod
14
- - go.sum
3
+ # Commented paths to avoid skipping required workflow
4
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
5
+ # paths:
6
+ # - .github/workflows/integration-tests.yml
7
+ # - "**/*.go"
8
+ # - "chain/**"
9
+ # - "cmd/**"
10
+ # - "dot/**"
11
+ # - "internal/**"
12
+ # - "lib/**"
13
+ # - "pkg/**"
14
+ # - "tests/**"
15
+ # - go.mod
16
+ # - go.sum
15
17
name : integration-tests
16
18
17
19
jobs :
18
20
integration-tests :
19
21
timeout-minutes : 60
20
22
strategy :
21
23
matrix :
22
- packages : [
23
- github.com/ChainSafe/gossamer/dot/rpc/modules,
24
- github.com/ChainSafe/gossamer/lib/babe
25
- ]
24
+ packages :
25
+ [
26
+ github.com/ChainSafe/gossamer/dot/rpc/modules,
27
+ github.com/ChainSafe/gossamer/lib/babe,
28
+ ]
26
29
runs-on : ubuntu-latest
27
30
steps :
28
31
- id : go-cache-paths
53
56
54
57
- name : Run integration tests
55
58
run : go test -timeout=30m -tags integration ${{ matrix.packages }}
56
-
Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
branches :
5
5
- development
6
- paths :
7
- - .github/workflows/mocks.yml
8
- - " **/*.go"
6
+ # Commented paths to avoid skipping required workflow
7
+ # See https://github.community/t/feature-request-conditional-required-checks/16761
8
+ # paths:
9
+ # - .github/workflows/mocks.yml
10
+ # - "**/*.go"
9
11
10
12
jobs :
11
13
mocks-check :
You can’t perform that action at this time.
0 commit comments