-
Notifications
You must be signed in to change notification settings - Fork 11
50 lines (40 loc) · 1.03 KB
/
test-terminus.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
name: Terminus Github Action Tests
on:
pull_request:
branches:
- main
jobs:
test_terminus:
runs-on: ubuntu-latest
name: Terminus Setup
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terminus
uses: ./
- name: Expect terminus command to be available
run: terminus -V
- name: Expect terminus to print art
run: terminus art
test_terminus_login:
runs-on: ubuntu-latest
name: Terminus Login
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terminus
uses: ./
test_terminus_version:
name: Terminus Version
uses: ./.github/workflows/test-terminus-version.yml
test_terminus_version_304:
name: Terminus Version
uses: ./.github/workflows/test-terminus-version.yml
with:
terminus-version: 3.0.4
test_terminus_version_266:
name: Terminus Version
uses: ./.github/workflows/test-terminus-version.yml
with:
php-version: 7.4
terminus-version: 2.6.6