From 0e3545ad04060f7bbccd3cccaa2593634949092e Mon Sep 17 00:00:00 2001 From: Thomason Zhao Date: Tue, 25 Mar 2025 08:34:40 -0500 Subject: [PATCH] feat: add CI workflow for Linux builds using GitHub Actions --- .github/workflows/CI-linux.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/CI-linux.yml diff --git a/.github/workflows/CI-linux.yml b/.github/workflows/CI-linux.yml new file mode 100644 index 0000000..a27c2ab --- /dev/null +++ b/.github/workflows/CI-linux.yml @@ -0,0 +1,24 @@ +name: CI-linux + +on: + push: + branches: + - main + pull_request: + +jobs: + build-linux: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Configure + run: | + mkdir -p build + cd build + cmake .. + - name: Build + run: | + cmake --build build + ls -lh