Skip to content

Commit 0333829

Browse files
committed
Fix nightly
1 parent 0eca9d6 commit 0333829

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
qt_version: "6.7.3"
2626

2727
steps:
28+
- name: Install dependencies on Ubuntu
29+
if: runner.os == 'Linux'
30+
run: |
31+
sudo apt update -qq
32+
sudo apt install -y clazy
33+
2834
- name: Install Qt ${{ matrix.config.qt_version }} with options and default aqtversion
2935
uses: jurplel/install-qt-action@v4
3036
with:
@@ -38,7 +44,7 @@ jobs:
3844

3945
- name: Configure project
4046
run: >
41-
cmake -S . -B ./build -G Ninja ${{ matrix.config.cmake_arg }}
47+
cmake -S QXlsx -B ./build -G Ninja ${{ matrix.config.cmake_arg }}
4248
-DCMAKE_BUILD_TYPE=Debug
4349
--warn-uninitialized -Werror=dev
4450

0 commit comments

Comments
 (0)