Skip to content

addressing #83 while testing out my newfound collaborator powers #61

addressing #83 while testing out my newfound collaborator powers

addressing #83 while testing out my newfound collaborator powers #61

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
Linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .[advanced,dev]
- name: Test with pytest
run: |
pytest pynumdiff