generated from ddev/ddev-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.41 KB
/
tests.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Tests
on:
pull_request:
push:
branches: [ main ]
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: Debug with tmate
required: false
default: false
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# This is required for "gautamkrishnar/keepalive-workflow", see "ddev/github-action-add-on-test"
permissions:
actions: write
jobs:
tests:
strategy:
matrix:
ddev_version: [stable, HEAD]
fail-fast: false
runs-on: ubuntu-latest
# Define a job-level environment variable to check for the secret
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
steps:
# Step to check if the secret is provided
- name: Check for DD_API_KEY
if: ${{ env.DD_API_KEY == '' }}
run: |
echo "Error: DD_API_KEY secret is not set. Please provide the secret in the repository settings." >&2
exit 1
# Step to run the test only if the secret is available
- name: Run DDEV Add-on Test
uses: ddev/github-action-add-on-test@v2
if: ${{ env.DD_API_KEY != '' }}
with:
ddev_version: ${{ matrix.ddev_version }}
token: ${{ secrets.GITHUB_TOKEN }}
debug_enabled: ${{ github.event.inputs.debug_enabled }}
addon_repository: ${{ env.GITHUB_REPOSITORY }}
addon_ref: ${{ env.GITHUB_REF }}