-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (76 loc) · 2.43 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
77
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.3"
pgsql-version: "16"
drupal-version: "10.4.x-dev"
phpunit-command-options: '--filter testTripalAdminPages'
build-image: true
dockerfile: "Dockerfile"
test_codeclimate:
name: "Run providing inputs needed for codeclimate coverage reporting"
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.3"
pgsql-version: "16"
drupal-version: "10.4.x-dev"
phpunit-command-options: '--filter testTripalAdminPages'
build-image: true
dockerfile: "Dockerfile"
codeclimate-reporter-id: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }}