name: ci on: push: pull_request: jobs: build: runs-on: ubuntu-latest container: image: it.rivercry.com/system/bar:latest steps: - name: Checkout uses: actions/checkout@v4 - name: Configure run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release - name: Build run: cmake --build build --config Release -j "$(nproc)"