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