Skip to content

Bump the action-dependencies group with 2 updates #50

Bump the action-dependencies group with 2 updates

Bump the action-dependencies group with 2 updates #50

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.11"
- os: ubuntu-22.04
python-version: "3.14"
- os: macos-14
python-version: "3.14"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install tox coverage[toml]
- name: run Python tests
run: tox -e tests
examples:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- run: python -m pip install tox
- name: run examples
run: tox -e examples