Skip to content

Merge pull request #8 from findsimilar/core_features #10

Merge pull request #8 from findsimilar/core_features

Merge pull request #8 from findsimilar/core_features #10

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