-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (49 loc) · 1.41 KB
/
pull-request.yml
File metadata and controls
60 lines (49 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Workflow - Pull Request
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
jobs:
rust_check:
name: Run check
uses: ./.github/workflows/rust-check.yml
rust_test:
name: Run test
needs: rust_check
uses: ./.github/workflows/rust-test.yml
devnet_linux:
name: Run devnet
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/devnet-linux.yml
devnet_mac:
name: Run devnet
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/devnet-mac.yml
sequencer_linux:
name: Run sequencer
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/sequencer-linux.yml
sequencer_mac:
name: Run sequencer
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/sequencer-mac.yml
appchain_linux:
name: Run app-chain
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/appchain-linux.yml
appchain_mac:
name: Run app-chain
if: github.event.pull_request.draft == false
needs: rust_test
uses: ./.github/workflows/appchain-mac.yml