Skip to content

ci: add appsec system-tests to the ci #651

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/system_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: System Tests

on:
push:
branches:
- main
pull_request:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build layer
run: |
ARCH=amd64 PYTHON_VERSION=3.13 ./scripts/build_layers.sh

- uses: actions/upload-artifact@v4
with:
path: .layers/datadog_lambda_py-amd64-3.13.zip
name: binaries

system-tests:
needs:
- build
uses: DataDog/system-tests/.github/workflows/system-tests.yml@main
secrets: inherit
permissions:
contents: read
packages: write
with:
library: python_lambda
binaries_artifact: binaries
scenarios_groups: appsec
skip_empty_scenarios: true
Loading