From 177d39c2a3113be0009d2e33de33c437f4702815 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:25:01 +0200 Subject: [PATCH] Move checkout source further up --- .github/workflows/test_linux.yml | 6 +++--- .github/workflows/test_mac.yml | 14 ++------------ 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index efc5bce8..6a0d18d0 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -23,6 +23,9 @@ jobs: fail-fast: false runs-on: ubuntu-latest steps: + - name: Checkout Source + uses: actions/checkout@v5 + - name: Install System Packages run: | sudo apt update @@ -33,9 +36,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Checkout Source - uses: actions/checkout@v5 - - name: Sync UV run: | uv sync --no-dev --group test diff --git a/.github/workflows/test_mac.yml b/.github/workflows/test_mac.yml index 21a5e6e6..5d24b3c9 100644 --- a/.github/workflows/test_mac.yml +++ b/.github/workflows/test_mac.yml @@ -14,24 +14,14 @@ jobs: testMac: runs-on: macos-latest steps: - # - name: Python Setup - # uses: actions/setup-python@v6 - # with: - # python-version: "3.13" - # architecture: x64 - - # - name: Install Packages (brew) - # run: | - # brew install enchant + - name: Checkout Source + uses: actions/checkout@v5 - name: Install UV and Python uses: astral-sh/setup-uv@v6 with: python-version: "3.13" - - name: Checkout Source - uses: actions/checkout@v5 - - name: Sync UV run: | uv sync --no-dev --group test --group macos