From 9e03402618d3cc2d1ef19f8201100a6108faafe3 Mon Sep 17 00:00:00 2001 From: thomaslaurenson Date: Wed, 10 Jan 2024 10:19:47 +1300 Subject: [PATCH] Added build workflow --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..535d74c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: Build + +on: + push: + branches: + - "*" + +jobs: + build_linux: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Check source + run: pwd; ls -lisa + + - name: Check cmake version + run: cmake --version + + - name: Check gcc version + run: gcc --version