Skip to content

Commit

Permalink
Add CI testing (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbuda authored Mar 30, 2024
1 parent a3c8250 commit 7fd11d0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

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

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and unit test
run: |
mkdir build && cd build
cmake .. && make
ctest

0 comments on commit 7fd11d0

Please sign in to comment.