Skip to content

ci(deps): bump the github-actions group across 1 directory with 2 updates #708

ci(deps): bump the github-actions group across 1 directory with 2 updates

ci(deps): bump the github-actions group across 1 directory with 2 updates #708

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
# Least-privilege default token for every job in this workflow.
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
max-parallel: 8
matrix:
os:
- ubuntu-latest
python-version:
["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", pypy3.11]
include:
# Windows: Test lowest and highest supported Python versions
- os: windows-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.14"
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install tox tox-gh-actions
- name: Test with tox
run: tox