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