Files
clide/.gitea/workflows/build.yaml
Shaun Reed 288298ac18
Some checks failed
Build / Build (pull_request) Failing after 49s
Install python.
2026-02-21 15:21:53 -05:00

29 lines
508 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: |
sudo apt update - y
sudo apt install python3 -y
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.7.3'