Skip to content

Commit 309e517

Browse files
authored
Add GitHub Actions workflow for Guard Checker Build (#658)
1 parent edafb1f commit 309e517

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Guard Checker Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
guard-checker-build:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
include:
13+
- run-on: ubuntu-latest
14+
- run-on: macos-latest
15+
runs-on: ${{ matrix.run-on }}
16+
name: Guard Checker Build - ${{ matrix.run-on }}
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v6
20+
21+
- name: Build Guard Checker
22+
run: |
23+
cd src/ripple/app/hook
24+
make guard_checker

0 commit comments

Comments
 (0)