-
Notifications
You must be signed in to change notification settings - Fork 11
46 lines (46 loc) · 969 Bytes
/
pr.yaml
File metadata and controls
46 lines (46 loc) · 969 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
38
39
40
41
42
43
44
45
46
name: PR
on:
pull_request:
branches: [ main ]
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: false
publish-wheels: false