Skip to content

add integration tests for arguments #11

add integration tests for arguments

add integration tests for arguments #11

name: Install and run tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install project and dev dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run unit tests
run: |
python -m unittest discover -s tests