Skip to content

Perfect line in recall plot #237

Perfect line in recall plot

Perfect line in recall plot #237

Workflow file for this run

name: test-suite
on: [push, pull_request]
jobs:
lint-python:
name: lint-python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install ruff
run: |
pip install ruff
- name: Lint python with ruff
run: |
ruff .
test-asreview:
name: Test Insights for ASReview LAB versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install packages and run tests
run: |
pip install pytest tf-keras
pip install asreview[all]
pip install .
pytest tests