-
Notifications
You must be signed in to change notification settings - Fork 40
37 lines (34 loc) · 836 Bytes
/
pull.yml
File metadata and controls
37 lines (34 loc) · 836 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: Pull Request Checks
on:
pull_request:
permissions:
contents: read
id-token: write
jobs:
static-analysis:
name: Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
tests:
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
install-tests:
name: Installation Tests
uses: ./.github/workflows/install.yaml
integration-tests:
name: Integ Tests
uses: ./.github/workflows/python-integration.yml
examples:
name: Example Tests
uses: ./.github/workflows/python-examples.yml
pr-ci-all-required:
if: always()
needs:
- tests
- static-analysis
- install-tests
runs-on: ubuntu-22.04
steps:
- name: Verify all required jobs passed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}