From 86d36e41bc5bb6152ca5412adfb3e48296eb76c6 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 1 Oct 2024 14:41:09 -0400 Subject: [PATCH] disable caching, proper matrix Signed-off-by: William Woodruff --- .github/workflows/lint.yml | 2 -- .github/workflows/tests.yml | 6 ++++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ec37785..258fd49 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,8 +15,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: pyproject.toml - cache: "pip" - cache-dependency-path: pyproject.toml - name: Setup rust uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2c91a45..8d92c85 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,11 @@ jobs: strategy: matrix: python: + - "3.9" + - "3.10" + - "3.11" - "3.12" + - "3.13" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -19,8 +23,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - # cache: "pip" - # cache-dependency-path: pyproject.toml - name: install uv run: >