88 branches :
99 - main
1010 - npe2
11+ - cy/interface-overhaul
1112 tags :
1213 - " v*" # Push events to matching v*, i.e. v1.0, v20.15.10
1314 pull_request :
2223 runs-on : ${{ matrix.platform }}
2324 strategy :
2425 matrix :
25- # platform: [ubuntu-latest, windows-latest, macos-latest]
26+ # platform: [ubuntu-latest, windows-latest, macos-latest]
2627 platform : [windows-latest]
2728 python-version : [3.8, 3.9, "3.10"]
2829
@@ -34,27 +35,27 @@ jobs:
3435 with :
3536 python-version : ${{ matrix.python-version }}
3637
37- # these libraries enable testing on Qt on linux
38+ # these libraries enable testing on Qt on linux
3839 - uses : tlambert03/setup-qt-libs@v1
3940
40- # strategy borrowed from vispy for installing opengl libs on windows
41+ # strategy borrowed from vispy for installing opengl libs on windows
4142 - name : Install Windows OpenGL
4243 if : runner.os == 'Windows'
4344 run : |
4445 git clone --depth 1 https://github.com/pyvista/gl-ci-helpers.git
4546 powershell gl-ci-helpers/appveyor/install_opengl.ps1
4647 if (Test-Path -Path "C:\Windows\system32\opengl32.dll" -PathType Leaf) {Exit 0} else {Exit 1}
4748
48- # note: if you need dependencies from conda, considering using
49- # setup-miniconda: https://github.com/conda-incubator/setup-miniconda
50- # and
51- # tox-conda: https://github.com/tox-dev/tox-conda
49+ # note: if you need dependencies from conda, considering using
50+ # setup-miniconda: https://github.com/conda-incubator/setup-miniconda
51+ # and
52+ # tox-conda: https://github.com/tox-dev/tox-conda
5253 - name : Install dependencies
5354 run : |
5455 python -m pip install --upgrade pip
5556 python -m pip install setuptools tox tox-gh-actions
5657
57- # this runs the platform-specific tests declared in tox.ini
58+ # this runs the platform-specific tests declared in tox.ini
5859 - name : Test with tox
5960 uses : GabrielBB/xvfb-action@v1
6061 with :
6667 uses : codecov/codecov-action@v2
6768
6869 deploy :
69- # this will run when you have tagged a commit, starting with "v*"
70- # and requires that you have put your twine API key in your
71- # github secrets (see readme for details)
70+ # this will run when you have tagged a commit, starting with "v*"
71+ # and requires that you have put your twine API key in your
72+ # github secrets (see readme for details)
7273 needs : [test]
7374 runs-on : ubuntu-latest
7475 if : contains(github.ref, 'tags')
0 commit comments