-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (48 loc) · 1005 Bytes
/
main.yaml
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
38
39
40
41
42
43
44
45
46
47
48
name: Main
on:
push:
branches: [ "main" ]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: read
actions: read
id-token: write
pages: write
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
uses: ./.github/workflows/checks.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-wheels:
uses: ./.github/workflows/build-wheels.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
build-docs:
uses: ./.github/workflows/build-docs.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
codeql:
uses: ./.github/workflows/codeql.yaml
secrets: inherit
with:
sha: ${{ github.sha }}
release:
uses: ./.github/workflows/release.yaml
secrets: inherit
needs:
- build-docs
- build-wheels
- checks
- codeql
with:
sha: ${{ github.sha }}
publish-docs: true
publish-wheels: true