-
-
Notifications
You must be signed in to change notification settings - Fork 90
92 lines (88 loc) · 2.25 KB
/
action.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: test action
on:
push:
branches:
- v2
- v2-action-testing
workflow_dispatch:
jobs:
install:
strategy:
matrix:
runner:
- ubuntu-latest
name: test action
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: kayac/ecspresso@v0
with:
version: v1.5.0
- run: |
ecspresso version 2>&1 | fgrep v1.5.0
- uses: kayac/ecspresso@v1
with:
version: v1.6.0
- run: |
ecspresso version 2>&1 | fgrep v1.6.0
- uses: kayac/ecspresso@v1
with:
version: latest
- run: |
ecspresso version 2>&1 | fgrep v1.7.
- uses: kayac/ecspresso@v2
with:
version: latest
- run: |
ecspresso version 2>&1 | fgrep v2.
- uses: kayac/ecspresso@v2
with:
version: v1.7.14
- run: |
ecspresso version 2>&1 | fgrep v1.7.14
- uses: kayac/ecspresso@v2
with:
version-file: tests/.ecspresso-version
- run: |
ecspresso version 2>&1 | fgrep v2.0.0
- run: |
rm -f /usr/local/bin/ecspresso
- uses: kayac/ecspresso@v2-action-testing
with:
version: latest
- run: |
ecspresso version 2>&1 | fgrep v2.
- uses: kayac/ecspresso@v2-action-testing
with:
version: v2.0.4
- run: |
ecspresso version 2>&1 | fgrep v2.0.4
install_on_arm:
strategy:
matrix:
runner:
- buildjet-2vcpu-ubuntu-2204-arm
name: test action
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: kayac/ecspresso@v2-action-testing
with:
version: latest
- run: |
ecspresso version 2>&1 | fgrep v2.
- uses: kayac/ecspresso@v2-action-testing
with:
version: v2.0.4
- run: |
ecspresso version 2>&1 | fgrep v2.0.4
- uses: kayac/ecspresso@v2-action-testing
with:
version-file: tests/.ecspresso-version
- run: |
ecspresso version 2>&1 | fgrep v2.0.0
- uses: kayac/ecspresso@v2
with:
version: v2.3.3
- run: |
ecspresso version 2>&1 | fgrep v2.3.3