Files
clide/.gitea/workflows/build.yaml
Shaun Reed 6777a44b3b
Some checks failed
Build / Build (pull_request) Failing after 1m9s
Remove sudo
2026-02-21 15:25:01 -05:00

29 lines
497 B
YAML

name: Build
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
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 Python
run: |
apt update -y
apt install python3 -y
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.7.3'