summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/necti-dev.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/necti-dev.yml')
-rw-r--r--.github/workflows/necti-dev.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/necti-dev.yml b/.github/workflows/necti-dev.yml
new file mode 100644
index 0000000..de50a30
--- /dev/null
+++ b/.github/workflows/necti-dev.yml
@@ -0,0 +1,21 @@
+name: C/C++ CI (NeCTI Dev)
+
+on:
+ push:
+ branches: [ "dev" ]
+ pull_request:
+ branches: [ "dev" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev
+ - name: Build
+ run: cd dev/CompilerKit && nebuild ck-posix.json
+
+