Skip to content

adds logic to mark issues inactive and close after months of inactivity. #53

adds logic to mark issues inactive and close after months of inactivity.

adds logic to mark issues inactive and close after months of inactivity. #53

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
version: [3.8]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements_dev.txt
- name: Test with pytest
run: |
pytest