Skip to content

Dependabot for Python dependencies #42

Dependabot for Python dependencies

Dependabot for Python dependencies #42

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: Build and Test ${{ github.ref }}
cancel-in-progress: true
jobs:
BuildTest:
name: Test (Python ${{ matrix.python-version }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox-gh>=1.3
- name: Setup test suite
run: tox --notest
- name: Run test suite
run: tox --skip-pkg-install