You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will trigger Datadog Synthetic tests within your Datadog organisation
2
+
# For more information on running Synthetic tests within your GitHub workflows see: https://docs.datadoghq.com/synthetics/cicd_integrations/github_actions/
3
+
4
+
# This workflow uses actions that are not certified by GitHub.
5
+
# They are provided by a third-party and are governed by
6
+
# separate terms of service, privacy policy, and support
7
+
# documentation.
8
+
9
+
# To get started:
10
+
11
+
# 1. Add your Datadog API (DD_API_KEY) and Application Key (DD_APP_KEY) as secrets to your GitHub repository. For more information, see: https://docs.datadoghq.com/account_management/api-app-keys/.
12
+
# 2. Start using the action within your workflow
13
+
14
+
name: Run Datadog Synthetic tests
15
+
16
+
on:
17
+
push:
18
+
branches: [ "main" ]
19
+
pull_request:
20
+
branches: [ "main" ]
21
+
22
+
jobs:
23
+
build:
24
+
runs-on: ubuntu-latest
25
+
26
+
steps:
27
+
- uses: actions/checkout@v2
28
+
29
+
# Run Synthetic tests within your GitHub workflow.
30
+
# For additional configuration options visit the action within the marketplace: https://github.com/marketplace/actions/datadog-synthetics-ci
0 commit comments