-
-
Notifications
You must be signed in to change notification settings - Fork 383
37 lines (32 loc) · 581 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (32 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches:
- master
tags:
- v*
pull_request:
workflow_dispatch:
jobs:
format-lint:
name: Code Linting
uses: ./.github/workflows/format-lint.yml
secrets: inherit
linux:
name: Linux
needs:
- format-lint
uses: ./.github/workflows/linux.yml
secrets: inherit
macos:
name: macOS
needs:
- format-lint
uses: ./.github/workflows/macos.yml
secrets: inherit
windows:
name: Windows
needs:
- format-lint
uses: ./.github/workflows/windows.yml
secrets: inherit