Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
CI: extend testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Jan 28, 2021
1 parent 89dd840 commit 7b9102d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-install-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Install package

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
push: {}
# fixme
# pull_request:
# branches: [master]
push:
branches: [ master ]
pull_request:
branches: [master]

jobs:
pkg-check:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci-notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# fixme: this is temporal job limitation
os: [ubuntu-20.04] # , macOS-10.15, windows-2019
os: [ubuntu-20.04, macOS-10.15, windows-2019]
python-version: [3.8] # 3.6,
env:
TEST_ENV: TRUE
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: CI testing

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
push: {}
# fixme
# pull_request:
# branches: [master]
push:
branches: [ master ]
pull_request:
branches: [master]

jobs:
pytest:
Expand All @@ -17,8 +17,7 @@ jobs:
matrix:
# PyTorch 1.5 is failing on Win and bolts requires torchvision>=0.5
os: [ubuntu-20.04, macOS-10.15, windows-2019]
# fixme
python-version: [3.7] # 3.6, 3.8
python-version: [3.6, 3.8]
requires: ['minimal', 'latest']
# exclude:
# # excludes PT 1.3 as it is missing on pypi
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name: "Check Docs"

on: # Trigger the workflow on push or pull request, but only for the master branch
push: {}
# fixme
# pull_request:
# branches: [master]
pull_request:
branches: [master]

jobs:
sphinx-docs:
Expand Down

0 comments on commit 7b9102d

Please sign in to comment.