We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f692f6 commit 9a5d829Copy full SHA for 9a5d829
.github/workflows/native.yml
@@ -0,0 +1,32 @@
1
+name: Native Programs
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
+ name: Build
15
+ runs-on: solanadevelopers/solana-workshop-image
16
+ strategy:
17
+ matrix:
18
+ {
19
+ dir:
20
+ [
21
+ "basics/account-data/native/program",
22
+ "basics/checking-accounts/native/program",
23
+ ],
24
+ }
25
26
+ steps:
27
+ - name: Checkout code
28
+ uses: actions/checkout@v3
29
30
+ - name: Build program
31
+ working-directory: ${{ matrix.dir }}
32
+ run: cargo build-sbf --verbose
0 commit comments