Skip to content

Bump actions/checkout from 5.0.1 to 6.0.1 #5373

Bump actions/checkout from 5.0.1 to 6.0.1

Bump actions/checkout from 5.0.1 to 6.0.1 #5373

Workflow file for this run

name: Run dependency tests
on:
push:
pull_request:
branches-ignore: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python scripts/ci/install
- name: Run tests
run: python scripts/ci/run-dep-tests