Files
LR-EnviroCommand/.gitea/workflows/build.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 14: did not find expected key
dragonfly2046 2c860276c5
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Try fix
2026-05-02 10:41:18 -07:00

23 lines
614 B
YAML

name: Build CI
on: push
jobs:
build_and_test:
name: "Build"
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.10.2'
cache: 'false' or 'true'
dir: ${{ gitea.workspace }}
- 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