Skip to content

Commit

Permalink
Add GitHub workflow for building examples
Browse files Browse the repository at this point in the history
  • Loading branch information
antevir committed Feb 8, 2024
1 parent 6cfc951 commit 1b14f38
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build Examples

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
run_tests:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build All
run: |
cmake -S . -B build
cd build
make all

0 comments on commit 1b14f38

Please sign in to comment.