Skip to content

Fixed keyword pruning in KeyNMF #68

Fixed keyword pruning in KeyNMF

Fixed keyword pruning in KeyNMF #68

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
#
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }}-${{ matrix.python-version}}-${{ matrix.os }} @ ${{ github.ref }}"
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python3 -c "import sys; print(sys.version)"
- name: Install dependencies
run: python3 -m pip install --upgrade turftopic[pyro-ppl] pandas pytest
- name: Run tests
run: python3 -m pytest tests/