Files
LR-EnviroCommand/.gitea/workflows/build.yaml
T
dragonfly2046 419fd14fc6
Build CI / Build (ubuntu-latest) (push) Failing after 4s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Wait I don't need it
2026-05-02 10:51:53 -07:00

17 lines
443 B
YAML

name: Build CI
on: push
jobs:
build_and_test:
name: "Build"
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Build
# We don't need to set up the environment variable for CMake to see Qt because the install-qt-action
# sets up the necessary variables automatically
run: cmake --preset release && cmake --build --preset release