mirror of
https://github.com/Xahau/xahaud.git
synced 2026-04-29 15:37:46 +00:00
25 lines
496 B
YAML
25 lines
496 B
YAML
name: Guard Checker Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
guard-checker-build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- run-on: ubuntu-latest
|
|
- run-on: macos-latest
|
|
runs-on: ${{ matrix.run-on }}
|
|
name: Guard Checker Build - ${{ matrix.run-on }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Build Guard Checker
|
|
run: |
|
|
cd include/xrpl/hook
|
|
make guard_checker
|