Skip to content

Add select_outdated and rank_by_recency to Statement #153

Add select_outdated and rank_by_recency to Statement

Add select_outdated and rank_by_recency to Statement #153

Workflow file for this run

name: wdpy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
python -m unittest discover -s src