Skip to content

Commit

Permalink
add github action to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bmiddha committed Dec 25, 2024
1 parent 71aa868 commit 99c708b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CMake

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Build Project
uses: threeal/[email protected]
with:
build-type: Release

- name: Test Project
uses: threeal/[email protected]
with:
build-config: Release

0 comments on commit 99c708b

Please sign in to comment.