1
Fork 0
mirror of https://github.com/redstrate/Auracite.git synced 2025-04-22 12:47:45 +00:00

Install Qt in the workflow

This commit is contained in:
Joshua Goins 2024-11-01 19:06:55 -04:00
parent cc500b1901
commit 315b0b3750

View file

@ -8,6 +8,7 @@ on:
env:
CARGO_TERM_COLOR: always
QT_VERSION: 6.6
jobs:
build:
@ -25,6 +26,12 @@ jobs:
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "${{ env.QT_VERSION }}.*"
cache: true
modules: 'qtshadertools'
- name: Build
run: cargo build --verbose
- name: Run clippy