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