Add a dictionary factory backed by MARISA-tries #406
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev'] | |
include: | |
# custom tests | |
# other OS version necessary | |
- os: ubuntu-20.04 | |
python-version: '3.6' | |
- os: ubuntu-20.04 | |
python-version: '3.7' | |
# common versions on MacOS | |
- os: macos-latest | |
python-version: '3.10' | |
- os: macos-latest | |
python-version: '3.12' | |
# common versions on Windows | |
- os: windows-latest | |
python-version: '3.10' | |
- os: windows-latest | |
python-version: '3.12' | |
steps: | |
# Python and pip setup | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Get pip cache dir | |
id: pip-cache | |
run: | | |
echo "::set-output name=dir::$(pip cache dir)" | |
- name: pip cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pip-cache.outputs.dir }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# package setup | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
if: matrix.python-version != '3.6' && matrix.python-version != '3.7' | |
run: pip install -r requirements-dev.txt | |
- name: Install dependencies (pytest) | |
run: python -m pip install --upgrade pytest pytest-cov | |
# tests | |
- name: Lint with flake8 | |
if: matrix.python-version != '3.6' && matrix.python-version != '3.7' | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Code format with black | |
if: matrix.python-version != '3.6' && matrix.python-version != '3.7' | |
run: black --check --diff simplemma training tests | |
- name: Type checking with mypy | |
if: matrix.python-version != '3.6' && matrix.python-version != '3.7' | |
run: mypy -p simplemma -p training -p tests | |
- name: Test with pytest | |
run: python3 -m pytest --cov=./ --cov-report=xml | |
# coverage with default version | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == '3.10' | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
verbose: true |