Skip to content

Fix #382 - Crashing when attempting to fetch new comments from a post #431

Fix #382 - Crashing when attempting to fetch new comments from a post

Fix #382 - Crashing when attempting to fetch new comments from a post #431

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
Test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- uses: actions/cache@v2
with:
path: c:\hostedtoolcache\windows\python\3.8.4\x64\lib\site-packages
key: ${{ runner.os }}-pip_build-${{ hashFiles('**/requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
run: python -m unittest