Skip to content

Merge from master branch of upstream repository #1

Merge from master branch of upstream repository

Merge from master branch of upstream repository #1

Workflow file for this run

name: Test training documentation
on:
push:
branches-ignore:
- 'master'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q -r requirements.txt -c constraints.txt
- name: Run tests with make test
run: |
make test