[Docs] Second-order Extension Example #1415
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: Test | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- development | |
- master | |
- release | |
jobs: | |
tests: | |
name: "py${{ matrix.python-version }} torch${{ matrix.pytorch-version}}" | |
runs-on: ubuntu-latest | |
env: | |
USING_COVERAGE: '3.9' | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9] | |
pytorch-version: | |
- "==1.9.1" | |
- "==1.10.1" | |
- "==1.11.0" | |
- "==1.12.1" | |
- "==1.13.1" | |
- "==2.0.1" | |
- "" # latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
make install-test | |
pip install torch${{ matrix.pytorch-version }} torchvision | |
- name: Run test | |
if: contains('refs/heads/master refs/heads/development refs/heads/release', github.ref) | |
run: | | |
make test | |
- name: Run test-light | |
if: contains('refs/heads/master refs/heads/development refs/heads/release', github.ref) != 1 | |
run: | | |
make test-light |