Skip to content

Commit 61b993e

Browse files
committed
Test GitHub actions
0 parents  commit 61b993e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on: [push, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os:
12+
- ubuntu-24.04
13+
- macos-15
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: jurplel/install-qt-action@v4
17+
name: Install Qt
18+
with:
19+
version: '6.8.2'
20+
cache: true
21+
- name: Build
22+
run: |
23+
cmake -S view/sharedcache -B build -G Ninja
24+
cmake --build build
25+

0 commit comments

Comments
 (0)