about summary refs log tree commit diff stats
path: root/.github/workflows/pylint.yml
Commit message (Collapse)AuthorAgeFilesLines
* GHActions: Rerun PyLint when requirements.txt changestoonn2022-06-101-0/+2
|
* Actions: Pytests no longer compatible with Python <3.6toonn2022-02-051-2/+2
| | | | | We need to test f-strings now and it's a bother making that compatible with Python 2.
* Actions: Add on pull_request againtoonn2021-07-241-0/+4
| | | | | | | | | | | | | | | My testing was flawed. The status checks seemed to work fine because the builds were triggered on push in the same repo. But this doesn't work across repos. So GH Actions having run to completion on someone's fork doesn't give us the status checks we need. Therefore we want to run our Actions on PRs too, that way they're run from the ranger repo as well and the status checks should actually be informative. One possible improvement is that we could duplicate the workflows we want to run on PRs, that way we can drop all the things that don't really matter for status checks from the version matrices. Otoh that means we have pretty much duplicated workflows we need to keep in sync. Thank you for your lack of abstractions, GH Actions 🙄
* Actions: Check whether on_pullrequest is necessarytoonn2021-07-201-4/+0
|
* Actions: Reduce tested versions to oldest and newesttoonn2021-07-201-2/+2
|
* Actions: Fix pylint and Pypy paths filtertoonn2021-07-201-2/+2
|
* Actions: Drop Pypy from pylint and add pylint to Pypytoonn2021-07-201-1/+1
|
* Actions: Separate pypy tests because they failtoonn2021-07-201-1/+1
|
* Actions: Update, incorporate and splittoonn2021-07-201-0/+32
Update the required actions. Incorporate doctest and manpage_completion test in the test action and separate pylint because it doesn't work with as many python versions.