diff options
| author | Kamil Cukrowski <[email protected]> | 2021-05-18 16:20:32 +0200 |
|---|---|---|
| committer | Kamil Cukrowski <[email protected]> | 2021-08-21 02:17:12 +0200 |
| commit | 2558be51ea2046b05a70e00c05bfbdfcc9064dab (patch) | |
| tree | 88fd5cd696355d77b3b29ef967828ef6cf7e8547 /.github | |
| parent | e7fbf378f9786c92b9e241767d10685f465876fe (diff) | |
| download | STC-modified-2558be51ea2046b05a70e00c05bfbdfcc9064dab.tar.gz STC-modified-2558be51ea2046b05a70e00c05bfbdfcc9064dab.zip | |
Add github-actions testing
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/workflow.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 00000000..d0cb7f63 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,19 @@ +name: "Main Workflow" +on: + pull_request: + push: + +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - name: 'Checkout' + uses: actions/checkout@v2 + - name: 'Build & Test' + uses: ashutoshvarma/action-cmake-build@master + with: + cc: gcc + cxx: g++ + build-type: Release + configure-options: -DBUILD_TESTING=1 + run-test: true |
