From 56f5476eb38f8979c93039bb69780651f407ba8e Mon Sep 17 00:00:00 2001 From: Tony0812-dev Date: Mon, 16 Oct 2023 20:20:15 +0800 Subject: [PATCH] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 16 ++++++++++++++++ 1 file changed, 16 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..758afeb --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,16 @@ +name: C/C++ CI + +on: + push: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: configure + run: apt -y install meson clang gcc-mingw-w64-x86-64-win32 + - name: make + run: make +