Skip to content

Commit fba6d19

Browse files
authored
Add build+test to CI (#4)
* Add build+test to CI * CI: combine tests
1 parent 8788b96 commit fba6d19

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test examples
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Install dependencies
17+
run: |
18+
# Install aztec
19+
NON_INTERACTIVE=1 bash -i <(curl -s https://install.aztec.network)
20+
echo "$HOME/.aztec/bin" >> $GITHUB_PATH
21+
22+
- name: Build+Test Hello
23+
run: |
24+
cd hello
25+
make
26+
aztec test

0 commit comments

Comments
 (0)