| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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 🙄
|
| |
|
| |
|
| |
|
|
|
|
|
| |
We need to get it passing first before we can make it a useful status
check on PRs.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
This should enable the pylint, pytest, flake8 and shellcheck lints to
run when PRs are opened and have them act as status checks so PRs aren't
merged without them passing.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Github Actions don't support some of our tests, due to `ncurses`.
This Action fails intentionally so it might get fixed once we figure it
out. If we invert the failure condition to "make CI green" we might
forget about it.
|
|
|
|
|
| |
Add pytest to the failing workflow because otherwise it's not run with
python 2.7.
|
| |
|
|
|
|
|
|
| |
Doctests are interfering with CI because curses can't find the terminfo
database. This'll require looking into but for now we'll run the
doctests seperately and expect failure. Same thing for pytests.
|
|
|
|
|
|
| |
By seperating the python 3.7 workflow we can keep an eye on changed
linting errors for the newer pylint. Without cancelling the actions for
our current setup.
|
|
|
|
|
| |
Temporarily drop python 3.7 from the workflow because it's not
compatible with `pylint<2`.
|
|
|
|
|
|
|
|
|
|
| |
Run our python tests and shellcheck in seperate workflows only when
relevant files are changed, respectively python files or `scope.sh`.
This tests with one extra version of python, 3.7.
GitHub's version of shellcheck seems to be missing a few flags. So we
download the latest stable version, 0.7.0 currently.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Makes issue reporting easier.
Fixes #812
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This reverts commit 0757fe98dcb238133dcac664c972bdecb7b78b65.
|
|
|