docs: Updated the official document links #102
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |