-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (75 loc) · 2.36 KB
/
main.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
on: [push]
jobs:
test_all_defaults:
name: "Run using all defaults"
runs-on: ubuntu-latest
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Clone Tripal for testing purposes
run: |
git clone https://github.com/tripal/tripal.git tmp
cd tmp
git checkout 4.x
mv * ../
ls ../
- name: Run the action step
uses: ./ # Uses an action in the root directory
with:
directory-name: tripal
modules: tripal
phpunit-command-options: '--filter testTripalAdminPages'
test_all_provided:
name: "Run providing all inputs"
runs-on: ubuntu-latest
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Clone Tripal for testing purposes
run: |
git clone https://github.com/tripal/tripal.git tmp
cd tmp
git checkout 4.x
mv * ../
ls ../
- name: Run the action step
uses: ./ # Uses an action in the root directory
with:
directory-name: tripal
modules: tripal
php-version: "8.1"
pgsql-version: "13"
drupal-version: "10.0.x"
phpunit-command-options: '--filter testTripalAdminPages'
build-image: true
dockerfile: "tripaldocker/Dockerfile-php8.1-pgsql13"
test_dockfile_tripaldocker:
name: "Run Build Tripaldocker"
runs-on: ubuntu-latest
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Clone Tripal for testing purposes
run: |
git clone https://github.com/tripal/tripal.git tmp
cd tmp
git checkout 4.x
mv * ../
ls ../
- name: Run the action step
uses: ./ # Uses an action in the root directory
with:
directory-name: tripal
modules: tripal
php-version: "8.1"
pgsql-version: "13"
drupal-version: "10.0.x"
phpunit-command-options: '--filter testTripalAdminPages'
build-image: true
dockerfile: "UseTripalDockerBackupClause"