Skip to content

Introduce parameterized into test requirements #36

Introduce parameterized into test requirements

Introduce parameterized into test requirements #36

Workflow file for this run

name: "Tests"
on:
push:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
permissions:
contents: read
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
python-version:
# Available versions:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
fail-fast: true
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Set up Python"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
python3 -VV
python3 -m pip install -r requirements-dev.txt
- name: "Run tests"
run: |
make test