diff options
Diffstat (limited to 'deps/fff/.github/workflows')
-rw-r--r-- | deps/fff/.github/workflows/verify_pr.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/fff/.github/workflows/verify_pr.yaml b/deps/fff/.github/workflows/verify_pr.yaml new file mode 100644 index 0000000..588afac --- /dev/null +++ b/deps/fff/.github/workflows/verify_pr.yaml @@ -0,0 +1,25 @@ +name: Check PR + +on: + pull_request: + branches: + - master + push: + + +jobs: + check-pr: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + steps: + - uses: actions/checkout@v3 + - uses: seanmiddleditch/gha-setup-ninja@master + - name: Build + run: | + mkdir build + cmake -GNinja -B build + cmake --build build + ctest --test-dir build --output-on-failure + |