Skip to content

Commit

Permalink
add ci through gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeolson committed Nov 19, 2023
1 parent f323f68 commit 2a4aeec
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci

env:
CTEST_NO_TEST_ACTION: error
HOMEBREW_NO_INSTALL_CLEANUP: 1

on:
push:

jobs:
core:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Configure code
run: cmake -Bbuild
- name: Build code
run: cmake --build build --parallel
- name: Test code
run: ctest --test-dir build -V

0 comments on commit 2a4aeec

Please sign in to comment.