From ec549c35c2f73dfe2e33897feac4abe0f38cdbdc Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 11 Dec 2024 15:45:30 +0100 Subject: [PATCH] Run Mac only --- .github/workflows/test.yml | 40 +++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 201a368..c62b3fe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,31 +7,31 @@ permissions: contents: read jobs: - go: - name: Test Go - strategy: - matrix: - runner: [macos-latest, ubuntu-latest, windows-latest] - runs-on: ${{ matrix.runner }} - steps: - - uses: actions/checkout@v4 - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version: "1.23" - check-latest: true - cache: false - - name: Install mage - run: go install github.com/magefile/mage@v1.15.0 - - name: Run unit tests - run: mage test:unit + # go: + # name: Test Go + # strategy: + # matrix: + # runner: [macos-latest, ubuntu-latest, windows-latest] + # runs-on: ${{ matrix.runner }} + # steps: + # - uses: actions/checkout@v4 + # - name: Setup Go + # uses: actions/setup-go@v5 + # with: + # go-version: "1.23" + # check-latest: true + # cache: false + # - name: Install mage + # run: go install github.com/magefile/mage@v1.15.0 + # - name: Run unit tests + # run: mage test:unit python: name: Test Python strategy: matrix: - runner: [macos-latest, ubuntu-latest, windows-latest] - python: ["3.9", "3.10", "3.11", "3.12"] + runner: [macos-latest] + python: ["3.10"] runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v4