From 1d8f653578cb496386e0fa85eafa8774685297fe Mon Sep 17 00:00:00 2001 From: Silvano Cerza Date: Thu, 25 Jan 2024 12:17:25 +0100 Subject: [PATCH] Ditch Windows and Mac on Weaviate CI as Docker images are not provided --- .github/workflows/weaviate.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/weaviate.yml b/.github/workflows/weaviate.yml index afa5c5992..03cbd45a5 100644 --- a/.github/workflows/weaviate.yml +++ b/.github/workflows/weaviate.yml @@ -29,15 +29,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - name: Support longpaths - if: matrix.os == 'windows-latest' - working-directory: . - run: git config --system core.longpaths true - - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -49,7 +44,6 @@ jobs: run: pip install --upgrade hatch - name: Lint - if: runner.os == 'Linux' run: hatch run lint:all - name: Run Weaviate container