summaryrefslogtreecommitdiff
path: root/.github/workflows/minimum_python_versions.yaml
AgeCommit message (Collapse)AuthorFilesLines
2020-07-29Group tests with similar duration togetherMassimiliano Culpo1-30/+0
Style and documentation tests take just a few minutes to run. Since in Github actions one can't restart a single job but needs to restart an entire workflow, here we group tests with similar duration together.
2020-07-06Remove references to `master` from CITodd Gamblin1-2/+1
- [x] remove master from github actions - [x] remove master from .travis.yml - [x] make `develop` the default branch for `spack ci`
2020-06-30run github workflows on release branches (#17317)Greg Becker1-0/+1
2020-03-12Minor updates to CI configuration (#15458)Massimiliano Culpo1-1/+1
* Check on Python versions uses action/checkout@v2 * Update the apt cache before installing system packages
2019-12-31tests: rename checks in github actionsTodd Gamblin1-3/+3
I usually want to look at the Travis CI output, but I currently have to scroll down to see it. This renames checks to be a bit shorter and more consistent with Travis's naming, and also so that actions appear lower than travis and codecov in the list of checks.
2019-12-24tests: check min required python version with vermin (#14289)Massimiliano Culpo1-0/+30
This commit removes the `python_version.py` unit test module and the vendored dependencies `pyqver2.py` and `pyqver3.py`. It substitutes them with an equivalent check done using `vermin` that is run as a separate workflow via Github Actions. This allows us to delete 2 vendored dependencies that are unmaintained and substitutes them with a maintained tool. Also, updates the list of vendored dependencies.