From 0a1b09cb86d5abd5b956405f86b203aa705bebcd Mon Sep 17 00:00:00 2001 From: Martin Uecker Date: Mon, 30 Sep 2024 10:10:56 +0200 Subject: [PATCH] github CI --- .github/workflows/c-cpp.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..9f477ea --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,20 @@ +name: C CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: update + run: sudo apt-get install -q gcc make libbart-dev libgtk-3-dev + - name: make all + run: make all +