From b04271a9a00e4a75b85aaba5cc942aff13935628 Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Fri, 11 Nov 2022 13:33:12 -0800 Subject: [PATCH] Disable UTs for Windows while stablizing it (#1202) Signed-off-by: Chang Liu --- .github/workflows/unit-test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 63c5feb57..d80034b67 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -8,14 +8,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest , windows-latest, macos-latest ] + os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: - - name: Enable longer filenames - if: ${{ matrix.os == 'windows-latest' }} - run: git config --system core.longpaths true - - uses: actions/checkout@v2 - id: install-dashboards