diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..98971f3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 \ No newline at end of file