You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
581 B
38 lines
581 B
1 week ago
|
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
|