Attempt build CI
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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'
|
||||
- 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
|
||||
Reference in New Issue
Block a user