File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 17
17
name : Build (Linux, Ubuntu)
18
18
19
19
on :
20
- - pull_request
21
- - push
20
+ pull_request :
21
+ push :
22
+ schedule :
23
+ - cron : ' 0 2 * * 5' # Every Friday at 2am
24
+ workflow_dispatch :
25
+
26
+ # Reduce permissions to minimum for security
27
+ permissions :
28
+ contents : read
22
29
23
30
jobs :
24
31
build :
25
32
strategy :
26
33
fail-fast : false
27
34
matrix :
28
35
include :
36
+ - runs-on : ubuntu-24.04
37
+ qt : qt5-qmake
29
38
- runs-on : ubuntu-22.04
30
39
qt : qt5-qmake
31
- - runs-on : ubuntu-18.04
32
- qt : qt5-default
33
40
34
41
name : Build (Linux, ${{ matrix.runs-on }})
35
42
runs-on : ${{ matrix.runs-on }}
43
50
libapr1-dev \
44
51
libsvn-dev \
45
52
${{ matrix.qt }} \
46
- qtbase5-dev
53
+ qtbase5-dev \
54
+ subversion
47
55
48
56
- name : ' Checkout Git branch'
49
57
uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments