Skip to content

Removed WARNING about a deprecated known limitation #42

Removed WARNING about a deprecated known limitation

Removed WARNING about a deprecated known limitation #42

Workflow file for this run

name: 'test'
on:
push:
jobs:
test:
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
name: ${{ matrix.pyver }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.pyver }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
- name: Install
run: pip install .
- name: Run tests
run: make test
- name: Upload results on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: results
path: tests/results