-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (62 loc) · 1.71 KB
/
test.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
name: Test
on:
push:
env:
TERMINUS_TOKEN: ${{ secrets.TERMINUS_TOKEN }}
jobs:
unit:
runs-on: ubuntu-latest
container:
image: quay.io/pantheon-public/terminus-plugin-test:4.x-php8.0
options: --user root
name: Unit Tests
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Unit Tests
run: composer test
terminus-3:
needs: unit
runs-on: ubuntu-latest
container:
image: quay.io/pantheon-public/terminus-plugin-test:4.x-php8.0
options: --user root
name: Terminus 3 Functional Tests
env:
TERMINUS_SITE: terminus-addons-installer-plugin
TERMINUS_TOKEN: ${{ secrets.TERMINUS_TOKEN }}
BUILD_NUM: ${{ github.run_number }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install SSH key
uses: webfactory/ssh-agent@d4b9b8ff72958532804b70bbe600ad43b36d5f2e
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
log-public-key: false
- name: Set up environment
run: ./.bin/setup.sh
- name: Install plugin
run: |
terminus self:plugin:install ${GITHUB_WORKSPACE}
composer install
- name: Functional Tests
run: composer functional
- name: Cleanup
if: always()
run: ./.bin/cleanup.sh
code-style:
runs-on: ubuntu-latest
container:
image: quay.io/pantheon-public/terminus-plugin-test:4.x-php8.2
options: --user root
name: Code Style
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Code Style
run: composer cs