Add ResLogit implementation and a notebook example #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull-Request CI | |
on: [pull_request] | |
jobs: | |
CI: | |
name: Launching CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-developer.txt | |
- name: Run Pre commit hook (formatting, linting & tests) | |
run: pre-commit run --all-files --hook-stage pre-push --show-diff-on-failure | |
- name: Build coverage file | |
run: | | |
pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=choice_learn tests/ | tee pytest-coverage.txt | |
- name: Pytest coverage comment | |
uses: MishaKav/pytest-coverage-comment@main | |
with: | |
pytest-coverage-path: ./pytest-coverage.txt | |
junitxml-path: ./pytest.xml | |
unique-id-for-comment: ${{ matrix.python-version }} | |
title: 'Coverage Report for Python ${{ matrix.python-version }}' | |