From 8321c6adba1c362a913e7502cc57e5d0a1adb051 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 28 May 2024 12:11:00 +0200 Subject: [PATCH] Run integration tests on Linux as latest Since the Windows and MacOSX are the slowest to complete this reordering allows to start the long running tests early and reduce the overall completion time. --- .github/workflows/test-go-task.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-go-task.yml b/.github/workflows/test-go-task.yml index 17ce103a06d..3379d2b6d93 100644 --- a/.github/workflows/test-go-task.yml +++ b/.github/workflows/test-go-task.yml @@ -80,9 +80,9 @@ jobs: fail-fast: false matrix: operating-system: - - ubuntu-latest - windows-latest - macos-latest + - ubuntu-latest tests: ${{ fromJSON(needs.tests-collector.outputs.tests-data) }} runs-on: ${{ matrix.operating-system }} @@ -127,9 +127,9 @@ jobs: fail-fast: false matrix: operating-system: - - ubuntu-latest - windows-latest - macos-latest + - ubuntu-latest runs-on: ${{ matrix.operating-system }}