Skip to content

Bump actions/checkout from 4.2.1 to 4.2.2 in the gha-dependencies group across 1 directory #268

Bump actions/checkout from 4.2.1 to 4.2.2 in the gha-dependencies group across 1 directory

Bump actions/checkout from 4.2.1 to 4.2.2 in the gha-dependencies group across 1 directory #268

Workflow file for this run

name: Run Python Unit Tests
on:
workflow_call:
workflow_dispatch:
pull_request:
branches:
- master
permissions: {}
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-14
- ubuntu-24.04
- windows-2022
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.2.2
- name: Install Python 3
uses: actions/setup-python@v5.2.0
with:
cache: 'pip'
check-latest: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install tox tox-gh-actions
- name: Test with tox
run: tox