From e2a460c16827ecf9493714a7407477bfd06de469 Mon Sep 17 00:00:00 2001 From: Moritz Makowski Date: Wed, 17 Jan 2024 21:52:19 +0100 Subject: [PATCH] Add Python 3.12 to CI tests, add pip caching --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 24ee9ad..a0173a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,13 +16,15 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + cache: "pip" - name: Install dependencies run: | python -m pip install --upgrade pip