Skip to content

Merge pull request #18 from pkhalaj/documentation/improve-docstrings #34

Merge pull request #18 from pkhalaj/documentation/improve-docstrings

Merge pull request #18 from pkhalaj/documentation/improve-docstrings #34

Workflow file for this run

# This workflow installs Python dependencies and run tests for Python versions >= 3.12
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Testing Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["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: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[tests]"
- name: Test with pytest
run: |
pytest --cov=monkey_wrench --cov-report=xml