Skip to content

Bump the all group in /requirements with 1 update (#175) #45

Bump the all group in /requirements with 1 update (#175)

Bump the all group in /requirements with 1 update (#175) #45

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ['3.12', '3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
cache: pip
cache-dependency-path: requirements/tests.txt
- run: pip install tox
- run: tox run -e py${{ matrix.python }}
min:
name: Minimum Versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
with:
python-version: '3.8'
cache: pip
cache-dependency-path: requirements/tests.txt
- run: pip install tox
- run: tox run -e py-min