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