summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/c-cpp-dev.yml
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-09-02 08:12:34 +0200
committerGitHub <noreply@github.com>2025-09-02 08:12:34 +0200
commit0973d92a0bcec317c621ff90ae296b862db6409f (patch)
tree86dbd0e0d12162dfebafbd8a4086f1d297b05bdb /.github/workflows/c-cpp-dev.yml
parent891bc2653b911a4553a39d03bae4d62d866dbd07 (diff)
parentd84a951e42b69a1c2665548fa5d5f621b91e51ec (diff)
Merge pull request #11 from nekernel-org/dev
v0.0.1e3 — Langley
Diffstat (limited to '.github/workflows/c-cpp-dev.yml')
-rw-r--r--.github/workflows/c-cpp-dev.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml
new file mode 100644
index 0000000..0dad725
--- /dev/null
+++ b/.github/workflows/c-cpp-dev.yml
@@ -0,0 +1,19 @@
+name: C/C++ CI (CompilerKit)
+
+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
+
+