-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (28 loc) · 748 Bytes
/
Copy pathci.yml
File metadata and controls
32 lines (28 loc) · 748 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
name: CI
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
actionlint:
name: actionlint
uses: ./.github/workflows/_actionlint.yml
format-check:
name: format-check
uses: ./.github/workflows/_format-check.yml
build-analyzers:
name: build-analyzers
uses: ./.github/workflows/_build-analyzers.yml
build-nullable:
name: build-nullable
uses: ./.github/workflows/_build-nullable.yml
mstest-coverage:
name: mstest-coverage
uses: ./.github/workflows/_mstest-coverage.yml