Skip to content

Merge pull request #370 from MalloyDelacroix/host-blacklist #426

Merge pull request #370 from MalloyDelacroix/host-blacklist

Merge pull request #370 from MalloyDelacroix/host-blacklist #426

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