File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Solana Integration Checks
2
+ on :
3
+ push :
4
+ branches :
5
+ - solana/integration
6
+ pull_request : null
7
+
8
+ env :
9
+ RUSTC_VERSION : 1.76.0
10
+ jobs :
11
+ cancel-previous-runs :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Cancel Previous Runs
15
+ uses : styfle/cancel-workflow-action@0.9.1
16
+ with :
17
+ access_token : ${{ github.token }}
18
+ make-lint :
19
+ name : make lint
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - name : Install toolchain
24
+ uses : dtolnay/rust-toolchain@master
25
+ with :
26
+ toolchain : ${{ env.RUSTC_VERSION }}
27
+ components : clippy, rustfmt
28
+ - name : make lint
29
+ run : make lint
30
+ working-directory : ./solana
31
+ make-test :
32
+ name : make test
33
+ runs-on : ubuntu-latest
34
+ # Anchor Docker image: https://www.anchor-lang.com/docs/verifiable-builds#images
35
+ container : backpackapp/build:v0.29.0
36
+ steps :
37
+ - uses : actions/checkout@v4
38
+ - name : Set default Rust toolchain
39
+ run : rustup default stable
40
+ working-directory : ./solana
41
+ - name : make test
42
+ run : make test
43
+ working-directory : ./solana
You can’t perform that action at this time.
0 commit comments