Skip to content

Commit 5f3099a

Browse files
committed
Fix CI
Signed-off-by: Victor Chang <[email protected]>
1 parent 49b71db commit 5f3099a

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,8 @@ jobs:
173173
run: dotnet build -c ${{ env.BUILD_CONFIG }} --nologo "${{ env.SOLUTION }}"
174174
working-directory: ./src
175175

176-
- name: Start docker-compose
177-
run: docker compose up -d --wait
178-
working-directory: ./src/Plugins/MinIO/Tests
179-
180176
- name: Test
181-
run: find ~+ -type f -name "*.Test.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings
177+
run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings
182178
working-directory: ./src
183179

184180
- name: End SonarScanner
@@ -188,13 +184,6 @@ jobs:
188184
run: dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
189185
working-directory: ./src
190186

191-
- name: Stop docker-compose
192-
run: |
193-
docker compose down
194-
docker volume rm tests_minio_data
195-
docker volume rm tests_minio_config
196-
working-directory: ./src/Plugins/MinIO/Tests
197-
198187
- uses: codecov/[email protected]
199188
with:
200189
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)