Skip to content

docs: Updated the official document links #102

docs: Updated the official document links

docs: Updated the official document links #102

Workflow file for this run

name: "Unit Test"
on: [push,pull_request]
jobs:
unit_test:
name: Unit Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.6", "3.7", "3.8", "3.9" ]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install pipenv wheel
pipenv install --dev
- name: Build
run: make build
- name: Test
run: pipenv run nosetests