generated from ddev/ddev-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (50 loc) · 1.32 KB
/
tests.yaml
File metadata and controls
57 lines (50 loc) · 1.32 KB
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
54
55
56
57
name: tests
on:
pull_request:
paths-ignore:
- '**.md'
push:
paths-ignore:
- '**.md'
branches: [ main ]
schedule:
- cron: '25 08 * * *'
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
steps:
- uses: actions/checkout@v4
- name: Install DDEV
run: |
curl -fsSL https://ddev.com/install.sh | bash
if [ "${{ matrix.ddev_version }}" = "HEAD" ]; then
sudo apt-get update && sudo apt-get install -y build-essential
git clone https://github.com/ddev/ddev.git
cd ddev
make
sudo cp .gotmp/bin/linux_amd64/ddev /usr/local/bin/
fi
- name: Install BATS
run: |
git clone https://github.com/bats-core/bats-core.git
cd bats-core
sudo ./install.sh /usr/local
- name: Run tests
run: bats tests/test.bats