Commit 4d75357 1 parent 4968e81 commit 4d75357 Copy full SHA for 4d75357
File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,31 @@ name: CI
2
2
3
3
on :
4
4
push :
5
- branches : ['main']
6
5
pull_request :
6
+ workflow_dispatch :
7
7
merge_group :
8
8
types : [checks_requested]
9
+ schedule :
10
+ # Runs at 02:30, every Saturday
11
+ - cron : " 30 2 * * 6"
12
+
9
13
10
14
jobs :
11
15
Test :
12
- runs-on : ubuntu-latest
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ include :
20
+ - { target: aarch64-apple-darwin, os: macos-14 }
21
+ - { target: x86_64-apple-darwin, os: macos-13 }
22
+ - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
23
+ - { target: aarch64-unknown-linux-gnu, os: ubuntu-latest }
24
+ - { target: x86_64-pc-windows-msvc, os: windows-latest }
25
+ runs-on : ${{ matrix.platform.os }}
13
26
env :
14
27
HARFBUZZ_SYS_NO_PKG_CONFIG : true
15
28
steps :
16
- - uses : actions/checkout@v2
29
+ - uses : actions/checkout@v4
17
30
- uses : actions-rs/toolchain@v1
18
31
with :
19
32
toolchain : stable
You can’t perform that action at this time.
0 commit comments