Files
bar/.gitea/workflows/ci.yml
Arif Hasanic 817b9dd394
Some checks failed
ci / build (push) Failing after 0s
setup ci
2026-02-01 16:55:54 +01:00

21 lines
382 B
YAML

name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container:
image: git.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)"