Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit db7f618

Browse files
authoredFeb 21, 2024··
solana: add basic CI for solana integration branch (#4)
1 parent f1a5568 commit db7f618

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
 
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.