Skip to content

Commit b0a1254

Browse files
committed
ci: add appsec system-tests to the ci
1 parent 33fcbce commit b0a1254

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/system_tests.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: System Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
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+
with:
35+
library: python_lambda
36+
binaries_artifact: binaries
37+
scenarios_groups: appsec
38+
skip_empty_scenarios: true

0 commit comments

Comments
 (0)