Skip to content

Merge pull request #9957 from eodeyemi14/eodeyemi14/servicecatalog-cl… #336

Merge pull request #9957 from eodeyemi14/eodeyemi14/servicecatalog-cl…

Merge pull request #9957 from eodeyemi14/eodeyemi14/servicecatalog-cl… #336

Workflow file for this run

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