-
Notifications
You must be signed in to change notification settings - Fork 3
154 lines (143 loc) · 4.83 KB
/
tests.yaml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: 'Tests - Setup YQ Action'
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'action.yaml'
- '.github/workflows/tests.yaml'
- 'scripts/unixish.sh'
- 'scripts/windowsish.ps1'
pull_request:
branches:
- main
jobs:
test-linux:
strategy:
matrix:
image:
- "ubuntu-latest"
- "ubuntu-20.04"
- "ubuntu-22.04"
- "ubuntu-24.04"
- "macos-latest"
- "macos-13"
- "macos-14"
- "macos-15"
- "windows-latest"
- "windows-2022"
- "windows-2019"
download-compressed:
- 'true'
- 'false'
force:
- 'true'
- 'false'
version:
- ''
- 'v4.44.3'
name: "Test Action - (img: ${{ matrix.image }}; dlcmp: ${{ matrix.download-compressed }}; force: ${{ matrix.force }}; v: ${{ matrix.version }})"
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- name: Setup yq
id: install-yq
uses: ./
with:
force: '${{ matrix.force }}'
download-compressed: '${{ matrix.download-compressed }}'
version: '${{ matrix.version }}'
- name: Check yq - Unix-ish
if: runner.os == 'Linux' || runner.os == 'macOS'
run: |
which yq
yq --version
- name: Check Outputs - Unix-ish
if: runner.os == 'Linux' || runner.os == 'macOS'
shell: bash -e {0}
# language=sh
run: |
_installed='${{ steps.install-yq.outputs.installed }}'
_err=
if [[ '${{ matrix.force }}' == 'true' ]]; then
# enabling "force" must result in an install
if [[ '${{ steps.install-yq.outputs.installed }}' != 'true' ]]; then
echo 'Unexpected value for "installed":'
echo 'Expected: "true"'
echo 'Actual: "${{ steps.install-yq.outputs.installed }}"'
_err=1
fi
else
if [[ '${{ steps.install-yq.outputs.found }}' == 'true' ]]; then
# if found, must not be installed without force
if [[ '${{ steps.install-yq.outputs.installed }}' != 'false' ]]; then
echo 'Unexpected value for "installed":'
echo 'Expected: "false"'
echo 'Actual: "${{ steps.install-yq.outputs.installed }}"'
_err=1
fi
else
# if not found, must be installed
if [[ '${{ steps.install-yq.outputs.installed }}' != 'true' ]]; then
echo 'Unexpected value for "installed":'
echo 'Expected: "true"'
echo 'Actual: "${{ steps.install-yq.outputs.installed }}"'
_err=1
fi
fi
fi
if [ -n "${_err}" ]; then exit 1; fi;
- name: Check yq - Windows-ish
if: runner.os == 'Windows'
run: |
Get-Command "yq.exe"
yq.exe --version
- name: Check Outputs - Windows-ish
if: runner.os == 'Windows'
shell: powershell
# language=pwsh
run: |
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest
$_installed='${{ steps.install-yq.outputs.installed }}'
$_err = 0
if ("${{ matrix.force }}" -eq "true")
{
# enabling "force" must result in an install
if ("${{ steps.install-yq.outputs.installed }}" -ne "true")
{
Write-Host "Unexpected value for installed"
Write-Host "Expected: true"
Write-Host "Actual: ${{ steps.install-yq.outputs.installed }}"
$_err=1
}
}
else
{
if ("${{ steps.install-yq.outputs.found }}" -eq "true")
{
# if found, must not be installed without force
if ("${{ steps.install-yq.outputs.installed }}" -ne "false")
{
Write-Host "Unexpected value for installed"
Write-Host "Expected: false"
Write-Host "Actual: ${{ steps.install-yq.outputs.installed }}"
$_err=1
}
}
else
{
# if not found, must be installed
if ("${{ steps.install-yq.outputs.installed }}" -ne "true") {
Write-Host "Unexpected value for installed"
Write-Host "Expected: true"
Write-Host "Actual: ${{ steps.install-yq.outputs.installed }}"
$_err=1
}
}
}
if ("${_err}" -ne 0)
{
exit 1
}