We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33fcbce commit b0a1254Copy full SHA for b0a1254
.github/workflows/system_tests.yml
@@ -0,0 +1,38 @@
1
+name: System Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+ - "**"
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Build layer
18
+ run: |
19
+ ARCH=amd64 PYTHON_VERSION=3.13 ./scripts/build_layers.sh
20
21
+ - uses: actions/upload-artifact@v4
22
+ with:
23
+ path: .layers/datadog_lambda_py-amd64-3.13.zip
24
+ name: binaries
25
26
+ system-tests:
27
+ needs:
28
+ - build
29
+ uses: DataDog/system-tests/.github/workflows/system-tests.yml@main
30
+ secrets: inherit
31
+ permissions:
32
+ contents: read
33
+ packages: write
34
35
+ library: python_lambda
36
+ binaries_artifact: binaries
37
+ scenarios_groups: appsec
38
+ skip_empty_scenarios: true
0 commit comments