-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace travis with GitHub for running CI jobs (#166)
* use Github Action for executing CI jobs * removed travis CI jobs * removed support for Python 3.5
- Loading branch information
Showing
3 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macOS-latest, windows-latest] | ||
python-version: [3.6, 3.7, 3.8] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Prepare Ubuntu | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install --no-install-recommends -y pandoc ffmpeg | ||
if: matrix.os == 'ubuntu-latest' | ||
- name: Prepare OSX | ||
run: brew install pandoc ffmpeg | ||
if: matrix.os == 'macOS-latest' | ||
- name: prepare Windows | ||
run: choco install pandoc ffmpeg | ||
if: matrix.os == 'windows-latest' | ||
- name: Install dependencies | ||
run: | | ||
python -V | ||
python -m pip install --upgrade pip | ||
python -m pip install . | ||
python -m pip install -r tests/requirements.txt | ||
python -m pip install -r doc/requirements.txt | ||
# This is needed in example scripts: | ||
python -m pip install pillow | ||
- name: Test | ||
run: python -m pytest | ||
- name: Test examples | ||
run: python doc/examples/run_all.py | ||
- name: Test documentation | ||
run: python -m sphinx doc/ _build/ -b doctest |
This file was deleted.
Oops, something went wrong.
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