summaryrefslogtreecommitdiff
path: root/test/script
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2021-01-27 20:11:46 +0000
committerw0rp <devw0rp@gmail.com>2021-01-27 20:11:46 +0000
commit82c8e3a3a3740b520c748ff181e5c29f508b8455 (patch)
tree955e3b1f10ccf7110f7a56178d1660e225064698 /test/script
parentbafe1c0fd62ee8173fdbc04a04caf59e3adeabc9 (diff)
downloadale-82c8e3a3a3740b520c748ff181e5c29f508b8455.zip
Remove last traces of Travis CI
* The build status badge is now for GitHub Actions. * The documentation now mentions GitHub instead. * Warnings in the YAML file have been fixed or ignored.
Diffstat (limited to 'test/script')
-rwxr-xr-xtest/script/custom-linting-rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/script/custom-linting-rules b/test/script/custom-linting-rules
index 86294f71..69ab3cc8 100755
--- a/test/script/custom-linting-rules
+++ b/test/script/custom-linting-rules
@@ -143,8 +143,8 @@ check_errors '\(!=.\?\|isnot\) type({})' "Use 'isnot v:t_dict' instead"
check_errors '\(!=.\?\|isnot\) type(function([^)]\+))' "Use 'isnot v:t_func' instead"
# Run a Python script to find lines that require padding around them. For
-# users without Python installed, we'll skip these checks. Travis CI will run
-# the script.
+# users without Python installed, we'll skip these checks. GitHub Actions will
+# run the script.
if command -v python > /dev/null; then
if ! test/script/block-padding-checker "$directory"/**/*.vim; then
RETURN_CODE=1