Skip to content

comment tests for new find-similar features #16

comment tests for new find-similar features

comment tests for new find-similar features #16

Workflow file for this run

# .github/workflows/run-tests.yml
name: Run tests
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install find-similar
- name: Run tests
run: |
make coverage