Skip to content

Commit

Permalink
Merge pull request #1 from kemperlab/test-github-actions
Browse files Browse the repository at this point in the history
Create ci.yml
  • Loading branch information
ArvinSKushwaha committed Jun 2, 2023
2 parents 6a5b623 + 5bcb4e0 commit 1ae7b89
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,21 @@
name: CI Pipeline

on:
pull_request:
push:
branches: [ "main" ]

jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v3
- name: Build CMake
uses: threeal/cmake-action@latest
- name: Run Tests
run: build/test/run_all_tests

0 comments on commit 1ae7b89

Please sign in to comment.