We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0bad87 commit a3b6feaCopy full SHA for a3b6fea
.github/workflows/CI.yml
@@ -5,13 +5,17 @@ on:
5
branches:
6
- main
7
8
+ schedule:
9
+ # 台灣的每隔 2 天的午夜 00:00 觸發
10
+ - cron: '0 16 */2 * *'
11
+
12
concurrency:
13
group: ${{ github.workflow }}-${{ github.ref }}
14
cancel-in-progress: true
15
16
jobs:
17
- Test:
18
+ Sync:
19
strategy:
20
matrix:
21
os:
@@ -27,7 +31,24 @@ jobs:
27
31
with:
28
32
swift: ${{ matrix.swift }}
29
33
os: ${{ matrix.os }}
34
+ - run: make install
30
35
36
+ Test:
37
+ strategy:
38
+ matrix:
39
+ os:
40
+ - ubuntu-latest
41
+ # - macos-latest
42
+ swift: ["5.9"]
43
+ runs-on: ${{ matrix.os }}
44
+ steps:
45
+ - uses: actions/checkout@v4
46
+ with:
47
+ submodules: true
48
+ - uses: ./.github/workflows/actions/setup
49
50
+ swift: ${{ matrix.swift }}
51
+ os: ${{ matrix.os }}
52
- run: swift build
53
- run: swift test
54
0 commit comments