Skip to content

New version: 1.7.2 → 1.7.3 [2023-12-11] #4

New version: 1.7.2 → 1.7.3 [2023-12-11]

New version: 1.7.2 → 1.7.3 [2023-12-11] #4

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
os:
- ubuntu-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
shell: bash
- name: Run tests
run: tox -f py$(echo ${{ matrix.python-version }} | tr -d .)
shell: bash