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