From ef8641fa049164a777bb7ccc2e1460b194be36a2 Mon Sep 17 00:00:00 2001 From: Jill Date: Wed, 22 Jan 2025 17:19:22 -0800 Subject: [PATCH] testing with latest and explicit setup_python references --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e496bc18..8de1fd9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: jobs: python-test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.13"] @@ -36,10 +36,19 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} run: | python -m pip install --upgrade pip python -m pip install tox tox-gh-actions - name: Test with tox + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} run: tox -e test - name: Test with tox with postgresql + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} run: tox -e test-with-postgresql