Skip to content

Refactor assignment of pair_type #33

Refactor assignment of pair_type

Refactor assignment of pair_type #33

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
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 package
run: |
pip install -e ".[tests]"
- name: Run tests
run: |
pytest --cov=mleam --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}