File tree Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -106,18 +106,6 @@ jobs:
106
106
with :
107
107
dotnet-version : ${{ matrix.install-version }}
108
108
dotnet-quality : ' ga' # Prefer a GA release, but use the RC if not available
109
- - name : Setup .NET 8 (required)
110
- uses : actions/setup-dotnet@v3
111
- if : ${{ matrix.install-version != '8.0.x' }}
112
- with :
113
- dotnet-version : ' 8.0.x'
114
- dotnet-quality : ' ga'
115
- - name : Setup .NET 9 (required)
116
- uses : actions/setup-dotnet@v3
117
- if : ${{ matrix.install-version != '9.0.x' }}
118
- with :
119
- dotnet-version : ' 9.0.x'
120
- dotnet-quality : ' ga'
121
109
- name : Install dependencies
122
110
run : dotnet restore
123
111
- name : Check test coverage
@@ -155,8 +143,8 @@ jobs:
155
143
echo "$tests" | while read test; do
156
144
test_name=$(echo $test | jq -r '.name')
157
145
echo "test name: $test_name"
158
- args =$(echo $test | jq -r '.arguments')
159
- echo 'args: $args '
146
+ arguments =$(echo $test | jq -r '.arguments')
147
+ echo 'args: $arguments '
160
148
expectedOutputs=$(echo $test | jq -r '.expected_stdout_output[]')
161
149
expectation_type=$(echo $test | jq -r '.expectation_type')
162
150
You can’t perform that action at this time.
0 commit comments