diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index be86f781..aab3a92b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -5,7 +5,8 @@ "branches": [ "master" ] - } + }, + "pull_request": null }, "jobs": { "build-docs": { diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 0902e19d..23d47b2f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -29,8 +29,18 @@ } }, { - "name": "Install SBLint", - "run": "\necho 'dist ultralisp http://dist.ultralisp.org' > qlfile\nqlot update\nqlot exec ros install 40ants-linter\n", + "name": "Change dist to Ultralisp", + "run": "echo 'dist ultralisp http://dist.ultralisp.org' > qlfile", + "shell": "bash" + }, + { + "name": "Update Qlot", + "run": "qlot update || qlot update", + "shell": "bash" + }, + { + "name": "Install SBLint wrapper", + "run": "qlot exec ros install 40ants-linter", "shell": "bash" }, { diff --git a/src/ci.lisp b/src/ci.lisp index 5c68f382..4e6a0d8d 100644 --- a/src/ci.lisp +++ b/src/ci.lisp @@ -26,5 +26,6 @@ (defworkflow docs :on-push-to "master" + :on-pull-request t :jobs ((40ants-ci/jobs/docs:build-docs :asdf-system "40ants-doc/doc")))