Skip to content

Commit 9a5d829

Browse files
author
jpcaulfi
committed
cicd
1 parent 4f692f6 commit 9a5d829

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/native.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Native Programs
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
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

Comments
 (0)