Skip to content

Commit 7e79668

Browse files
committed
Removed extraneous .NET install steps
Signed-off-by: Whit Waldo <[email protected]>
1 parent 6053d40 commit 7e79668

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

.github/workflows/example-tests.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -106,18 +106,6 @@ jobs:
106106
with:
107107
dotnet-version: ${{ matrix.install-version }}
108108
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'
121109
- name: Install dependencies
122110
run: dotnet restore
123111
- name: Check test coverage
@@ -155,8 +143,8 @@ jobs:
155143
echo "$tests" | while read test; do
156144
test_name=$(echo $test | jq -r '.name')
157145
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'
160148
expectedOutputs=$(echo $test | jq -r '.expected_stdout_output[]')
161149
expectation_type=$(echo $test | jq -r '.expectation_type')
162150

0 commit comments

Comments
 (0)