Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: 🧪 Tests (CPython 3.10 – 3.13)

on:
push: # run on every push to any branch
push: # run on every push to any branch

defaults:
run:
shell: bash # makes multi-line run steps a little tidier
shell: bash # makes multi-line run steps a little tidier

concurrency: # cancel superseded runs on the same ref
concurrency: # cancel superseded runs on the same ref
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

Expand All @@ -17,16 +17,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache: pip

- name: Install dependencies
run: |
Expand All @@ -37,6 +37,6 @@ jobs:
- name: Run test suite
env:
W24TECHREAD_AUTH_REGION: ${{ secrets.W24TECHREAD_AUTH_REGION }}
W24TECHREAD_AUTH_TOKEN: ${{ secrets.W24TECHREAD_AUTH_TOKEN }}
W24TECHREAD_AUTH_TOKEN: ${{ secrets.W24TECHREAD_AUTH_TOKEN }}
run: |
pytest -ra --color=yes # -ra gives a concise test summary
Loading