From 530a1aeb64f8ad451fa21c57ad1463a230c48972 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 19 Aug 2025 11:39:58 +0200 Subject: [PATCH] GitHub Actions: Run tests on the current CPython. https://github.com/actions/checkout/releases https://github.com/actions/setup-python/releases --- .github/workflows/checks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 9ebd5060..28aad725 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -10,13 +10,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8'] + python-version: ['3.8', '3.x'] os: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -25,7 +25,7 @@ jobs: python -m pip install --upgrade pip wheel python -m pip install codecov coverage # install dependencies - pip install -e .[all] + pip install --editable .[all] # show installed packages pip freeze - name: Run test suite