Skip to content

Actions(deps): Bump actions/setup-python from 5.5.0 to 5.6.0 #699

Actions(deps): Bump actions/setup-python from 5.5.0 to 5.6.0

Actions(deps): Bump actions/setup-python from 5.5.0 to 5.6.0 #699

Workflow file for this run

# Copyright (C) 2020 Sebastian Pipping <[email protected]>
# Licensed under GPL v3 or later
name: Run the test suite
on:
- pull_request
- push
jobs:
run-tests:
name: Run the test suite
strategy:
matrix:
python-version: [3.9, 3.13] # no particular need for in-between versions
runs-on: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Run the test suite
run: |
set -x
python3 --version
pip3 install -U pip setuptools wheel
pip3 install ".[tests]" # for test dependencies
pip3 install -U pytest # for a test runner
exec pytest -v -Wdefault -Werror