Files
clide/.gitea/workflows/build.yaml
Shaun Reed d461a29ff9
Some checks failed
Build / Build (push) Failing after 54s
Build / Build (pull_request) Failing after 56s
Yes.
2026-02-21 15:18:42 -05:00

26 lines
479 B
YAML

name: Build
on:
push:
branches:
- '*'
# Runs on tag so the release workflow can use its artifact.
tags:
- "v*"
pull_request:
workflow_dispatch:
jobs:
Build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.7.3'