This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
Update copyright range LICENSE.txt #18
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
unix-build: | |
name: Unix Build | |
strategy: | |
matrix: | |
os: [ubuntu-18.04, macOS-latest] | |
python-version: [2.7, 3.5, 3.6, 3.7] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Package Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Test with nosetests | |
run: | | |
nosetests | |
windows-build: | |
name: Windows Build | |
strategy: | |
matrix: | |
os: [windows-2019] | |
python-version: [2.7, 3.5, 3.6, 3.7] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Package Dependencies | |
run: | | |
pip install -r requirements.txt | |
shell: cmd | |
- name: Test with nosetests | |
run: | | |
nosetests | |
shell: cmd |