File tree Expand file tree Collapse file tree 8 files changed +28
-4
lines changed Expand file tree Collapse file tree 8 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 1
1
on :
2
2
pull_request :
3
3
paths :
4
+ - .github/workflows/ci-aptos-contract.yml
4
5
- target_chains/aptos/contracts/**
5
6
push :
6
7
branches :
29
30
30
31
- name : Check Formatting
31
32
run : ./aptos move fmt
33
+ if : success() || failure()
32
34
33
35
- name : Lint
34
36
run : ./aptos move lint --check-test-code --dev
37
+ if : success() || failure()
35
38
36
39
- name : Run tests
37
40
run : ./aptos move test
41
+ if : success() || failure()
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Test CosmWasm Contract
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - .github/workflows/ci-cosmwasm-contract.yml
6
7
- target_chains/cosmwasm/**
7
8
- wormhole_attester/sdk/rust/**
8
9
push :
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Check Fortuna
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - .github/workflows/ci-fortuna.yml
6
7
- apps/fortuna/**
7
8
push :
8
9
branches : [main]
24
25
override : true
25
26
- name : Format check
26
27
run : cargo fmt --all -- --check
28
+ if : success() || failure()
27
29
- name : Clippy check
28
30
run : cargo clippy --tests -- --deny warnings
31
+ if : success() || failure()
29
32
- name : Run tests
30
33
run : cargo test
34
+ if : success() || failure()
Original file line number Diff line number Diff line change 32
32
run : forc test --verbose
33
33
- name : Rust add wasm32-unknown-unknown target
34
34
run : rustup target add wasm32-unknown-unknown
35
- - name : Format check
36
- run : cargo fmt --all -- --check
37
- - name : Clippy check
38
- run : cargo clippy --tests -- --deny warnings
39
35
- name : Build
40
36
run : cargo build --verbose
41
37
- name : Run tests
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Check Hermes Server
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - .github/workflows/ci-hermes-server.yml
6
7
- apps/hermes/server/**
7
8
push :
8
9
branches : [main]
29
30
repo-token : ${{ secrets.GITHUB_TOKEN }}
30
31
- name : Format check
31
32
run : cargo fmt --all -- --check
33
+ if : success() || failure()
32
34
- name : Clippy check
33
35
run : cargo clippy --tests -- --deny warnings
36
+ if : success() || failure()
34
37
- name : Run executor tests
35
38
run : cargo test
39
+ if : success() || failure()
Original file line number Diff line number Diff line change 5
5
- main
6
6
pull_request :
7
7
paths :
8
+ - .github/workflows/ci-lazer-rust.yml
8
9
- lazer/**
9
10
10
11
jobs :
38
39
run : find . -name Cargo.toml -exec taplo fmt --check --diff {} \;
39
40
- name : Format check
40
41
run : cargo fmt --all -- --check
42
+ if : success() || failure()
41
43
- name : Clippy check
42
44
run : cargo clippy --all-targets -- --deny warnings
45
+ if : success() || failure()
43
46
- name : Build Solana programs
44
47
run : cargo build-sbf
48
+ if : success() || failure()
45
49
- name : test
46
50
run : cargo test
51
+ if : success() || failure()
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Check Remote Executor
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - .github/workflows/ci-remote-executor.yml
6
7
- governance/remote_executor/**
7
8
push :
8
9
branches : [main]
30
31
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
31
32
- name : Format check
32
33
run : cargo fmt --all -- --check
34
+ if : success() || failure()
33
35
- name : Clippy check
34
36
run : cargo clippy --tests -- --deny warnings
37
+ if : success() || failure()
35
38
- name : Run executor tests
36
39
run : cargo test-sbf
40
+ if : success() || failure()
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: Test Solana Contract
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - .github/workflows/ci-solana-contract.yml
6
7
- target_chains/solana/**
7
8
- pythnet/pythnet_sdk/**
8
9
push :
@@ -34,11 +35,16 @@ jobs:
34
35
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
35
36
- name : Format check
36
37
run : cargo fmt --all -- --check
38
+ if : success() || failure()
37
39
- name : Clippy check
38
40
run : cargo clippy --tests -- --deny warnings
41
+ if : success() || failure()
39
42
- name : Build
40
43
run : cargo-build-sbf
44
+ if : success() || failure()
41
45
- name : Run tests
42
46
run : cargo-test-sbf
47
+ if : success() || failure()
43
48
- name : Run sdk tests
44
49
run : cargo test --package pyth-solana-receiver-sdk
50
+ if : success() || failure()
You can’t perform that action at this time.
0 commit comments