Skip to content

Commit

Permalink
Ci (#28)
Browse files Browse the repository at this point in the history
* Add CI tests.
  • Loading branch information
PerMalmberg authored Aug 27, 2022
1 parent 5c8de08 commit 5f8ecc9
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: libcron tests

on: [push, pull_request]

jobs:
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: |
mkdir build
cd build
cmake ..
make -j4
- name: Test
run: |
cd test/out
./cron_test

0 comments on commit 5f8ecc9

Please sign in to comment.