Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 27, 2024
1 parent a0375b6 commit ed8a4a3
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 64 deletions.
16 changes: 14 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

# ChangeLog

<a id="x-2840ANTS-CI-2FCHANGELOG-3A-3A-7C0-2E14-2E0-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## 0.14.0 (2024-02-25)

<a id="changed"></a>

### Changed

All jobs now use setup-lisp@v4 where internal caching was implemented.

Also all jobs were switched to from `actions/checkout@v3` to `actions/checkout@v4` action.

<a id="x-2840ANTS-CI-2FCHANGELOG-3A-3A-7C0-2E13-2E0-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## 0.13.0 (2023-12-14)
Expand Down Expand Up @@ -96,7 +108,7 @@ if `:cache t` was given to a job running on `OSX` and Roswell was restored from

## 0.7.0 (2022-03-13)

* `40ants-ci/jobs/critic:critic` ([`1`][cd00] [`2`][484a]) function's argument `IGNORE-CRITICUES` was
* `40ants-ci/jobs/critic:critic` ([`1`][484a] [`2`][cd00]) function's argument `IGNORE-CRITICUES` was
renames to the `IGNORE-CRITIQUES` argument.

<a id="x-2840ANTS-CI-2FCHANGELOG-3A-3A-7C0-2E6-2E0-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>
Expand All @@ -123,7 +135,7 @@ Learn more about this job type at [`Critic`][240b] section.

## 0.3.0 (2021-10-24)

* Now jobs `40ants-ci/jobs/linter:linter` ([`1`][8918] [`2`][523a]), `40ants-ci/jobs/run-tests:run-tests` ([`1`][e35d] [`2`][6cb7]) and `40ants-ci/jobs/docs:build-docs` ([`1`][13b8] [`2`][1ddb])
* Now jobs `40ants-ci/jobs/linter:linter` ([`1`][523a] [`2`][8918]), `40ants-ci/jobs/run-tests:run-tests` ([`1`][6cb7] [`2`][e35d]) and `40ants-ci/jobs/docs:build-docs` ([`1`][1ddb] [`2`][13b8])
support `ASDF-VERSION` argument.

<a id="x-2840ANTS-CI-2FCHANGELOG-3A-3A-7C0-2E2-2E2-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>
Expand Down
124 changes: 62 additions & 62 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ actions and [`SBLint`][2f94] to check code for compilation errors.

## 40ANTS-CI ASDF System Details

* Version: 0.13.0
* Version: 0.14.0
* Description: A tool simplify continuous deployment for Common Lisp projects.
* Licence: `BSD`
* Author: Alexander Artemenko
Expand Down Expand Up @@ -84,13 +84,13 @@ git tag will be pushed. Here is an [example][1cec] how to setup this kind of qui
```
<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20FUNCTION-29"></a>

##### [function](3bc0) `40ants-ci/jobs/autotag:autotag` &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*)
##### [function](3b00) `40ants-ci/jobs/autotag:autotag` &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*)

Creates a job which will run autotagger to create a new git tag for release.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20CLASS-29"></a>

##### [class](118f) `40ants-ci/jobs/autotag:autotag` (job)
##### [class](deaf) `40ants-ci/jobs/autotag:autotag` (job)

This type of the job created a git tag when finds a new tag in specified file.

Expand Down Expand Up @@ -125,11 +125,11 @@ it will generate `.github/workflows/linter.yml` with following content:
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v3",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example"
}
Expand Down Expand Up @@ -161,7 +161,7 @@ Another interesting thing is that this workflow automatically uses `ubuntu-lates

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20CLASS-29"></a>

##### [class](e388) `40ants-ci/jobs/linter:linter` (lisp-job)
##### [class](1cf0) `40ants-ci/jobs/linter:linter` (lisp-job)

<a id="x-2840ANTS-CI-3A-3A-40CRITIC-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Expand Down Expand Up @@ -197,7 +197,7 @@ to learn about supported arguments.

#### Running Tests

Another interesting job type is `40ants-ci/jobs/run-tests:run-tests` ([`1`][e35d] [`2`][6cb7]).
Another interesting job type is `40ants-ci/jobs/run-tests:run-tests` ([`1`][6cb7] [`2`][e35d]).

When using this job type, make sure, your system
runs tests on `(ASDF:TEST-SYSTEM :system-name)` call
Expand Down Expand Up @@ -247,11 +247,11 @@ It will generate `.github/workflows/ci.yml` with following content:
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v3",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example"
}
Expand Down Expand Up @@ -350,7 +350,7 @@ Here is how these jobs will look like in the GitHub interface:

#### Building Docs

Third predefined job type is `40ants-ci/jobs/docs:build-docs` ([`1`][13b8] [`2`][1ddb]).
Third predefined job type is `40ants-ci/jobs/docs:build-docs` ([`1`][1ddb] [`2`][13b8]).
It uses [40ants/build-docs][613f]
action and will work only if your `ASDF` system uses a documentation builder supported by
[40ants/docs-builder][f2be].
Expand Down Expand Up @@ -387,11 +387,11 @@ It will generate `.github/workflows/docs.yml` with following content:
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v3",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example",
"qlfile-template": ""
Expand Down Expand Up @@ -431,7 +431,7 @@ Here is the diff of the generated workflow file. It shows steps, added automatic
modified .github/workflows/docs.yml
@@ -20,13 +20,40 @@
"name": "Checkout Code",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
},
+ {
+ "name": "Grant All Perms to Make Cache Restoring Possible",
Expand Down Expand Up @@ -461,7 +461,7 @@ modified .github/workflows/docs.yml
+ },
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v3",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "40ants-ci",
"qlfile-template": ""
Expand All @@ -480,7 +480,7 @@ and a way how to create new job types.

<a id="x-2840ANTS-CI-3AGENERATE-20FUNCTION-29"></a>

### [function](241d) `40ants-ci:generate` system &key path
### [function](19df) `40ants-ci:generate` system &key path

Generates GitHub workflow for given `ASDF` system.

Expand All @@ -492,47 +492,47 @@ to .github/workflow/ relarive to the `SYSTEM`.

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20FUNCTION-29"></a>

### [function](3b7a) `40ants-ci/jobs/run-tests:run-tests` &rest rest &key coverage qlfile asdf-system asdf-version os quicklisp lisp exclude custom
### [function](cdcd) `40ants-ci/jobs/run-tests:run-tests` &rest rest &key coverage qlfile asdf-system asdf-version os quicklisp lisp exclude custom

Creates a job step of class [`run-tests`][6cb7].

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20CLASS-29"></a>

### [class](1cb9) `40ants-ci/jobs/run-tests:run-tests` (lisp-job)
### [class](b6c8) `40ants-ci/jobs/run-tests:run-tests` (lisp-job)

This job test runs tests for a given `ASDF` system.

<a id="x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20FUNCTION-29"></a>

### [function](b69b) `40ants-ci/jobs/docs:build-docs` &key asdf-system asdf-version (error-on-warnings t)
### [function](0fe3) `40ants-ci/jobs/docs:build-docs` &key asdf-system asdf-version (error-on-warnings t)

Creates a job of class [`build-docs`][1ddb].

<a id="x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20CLASS-29"></a>

### [class](965f) `40ants-ci/jobs/docs:build-docs` (lisp-job)
### [class](bdad) `40ants-ci/jobs/docs:build-docs` (lisp-job)

Builds documentation and uploads it to GitHub using ["40ants/build-docs" github action][613f].

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AJOB-20CLASS-29"></a>

### [class](9399) `40ants-ci/jobs/job:job` ()
### [class](c907) `40ants-ci/jobs/job:job` ()

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3ANAME-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

### [reader](8156) `40ants-ci/jobs/job:name` (job) (:name)
### [reader](c7c4) `40ants-ci/jobs/job:name` (job) (:name)

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AOS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

### [reader](8803) `40ants-ci/jobs/job:os` (job) (:OS = "ubuntu-latest")
### [reader](fe69) `40ants-ci/jobs/job:os` (job) (:OS = "ubuntu-latest")

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3ASTEPS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

### [reader](ee11) `40ants-ci/jobs/job:steps` (job) (:steps = nil)
### [reader](ad39) `40ants-ci/jobs/job:steps` (job) (:steps = nil)

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3APERMISSIONS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

### [reader](3357) `40ants-ci/jobs/job:permissions` (job) (:permissions = nil)
### [reader](8b5b) `40ants-ci/jobs/job:permissions` (job) (:permissions = nil)

A plist of permissions need for running the job.

Expand All @@ -545,47 +545,47 @@ Use default-initargs to override permissions in subclasses:
```
<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-ENV-20GENERIC-FUNCTION-29"></a>

### [generic-function](9363) `40ants-ci/jobs/job:make-env` job
### [generic-function](611a) `40ants-ci/jobs/job:make-env` job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AUSE-MATRIX-P-20GENERIC-FUNCTION-29"></a>

### [generic-function](d371) `40ants-ci/jobs/job:use-matrix-p` job
### [generic-function](50bd) `40ants-ci/jobs/job:use-matrix-p` job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-MATRIX-20GENERIC-FUNCTION-29"></a>

### [generic-function](60e1) `40ants-ci/jobs/job:make-matrix` job
### [generic-function](0e0b) `40ants-ci/jobs/job:make-matrix` job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-PERMISSIONS-20GENERIC-FUNCTION-29"></a>

### [generic-function](a3c4) `40ants-ci/jobs/job:make-permissions` job
### [generic-function](6850) `40ants-ci/jobs/job:make-permissions` job

Should return an alist with mapping from string to string where keys are scopes and values are permission names. Default method generates this alist from the plist of job's "permissions" slot.

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-20CLASS-29"></a>

### [class](3694) `40ants-ci/jobs/lisp-job:lisp-job` (job)
### [class](4c7f) `40ants-ci/jobs/lisp-job:lisp-job` (job)

This job checkouts the sources, installs Roswell and Qlot. Also, it caches results between runs.

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

### [reader](2653) `40ants-ci/jobs/lisp-job:lisp` (lisp-job) (:LISP = "sbcl-bin")
### [reader](37d2) `40ants-ci/jobs/lisp-job:lisp` (lisp-job) (:LISP = "sbcl-bin")

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AASDF-SYSTEM-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

### [reader](dc74) `40ants-ci/jobs/lisp-job:asdf-system` (lisp-job) (:asdf-system = nil)
### [reader](9fae) `40ants-ci/jobs/lisp-job:asdf-system` (lisp-job) (:asdf-system = nil)

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AQUICKLISP-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

### [reader](3671) `40ants-ci/jobs/lisp-job:quicklisp` (lisp-job) (:QUICKLISP = "quicklisp")
### [reader](ee25) `40ants-ci/jobs/lisp-job:quicklisp` (lisp-job) (:QUICKLISP = "quicklisp")

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20CLASS-29"></a>

### [class](e388) `40ants-ci/jobs/linter:linter` (lisp-job)
### [class](1cf0) `40ants-ci/jobs/linter:linter` (lisp-job)

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20FUNCTION-29"></a>

### [function](0b2a) `40ants-ci/jobs/linter:linter` &key asdf-systems asdf-version check-imports
### [function](71eb) `40ants-ci/jobs/linter:linter` &key asdf-systems asdf-version check-imports

Creates a job which will run `SBL`int for given `ASDF` systems.

Expand All @@ -594,11 +594,11 @@ the current `ASDF` system.

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-20CLASS-29"></a>

### [class](1921) `40ants-ci/jobs/critic:critic` (lisp-job)
### [class](9a66) `40ants-ci/jobs/critic:critic` (lisp-job)

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-20FUNCTION-29"></a>

### [function](096e) `40ants-ci/jobs/critic:critic` &key asdf-systems asdf-version ignore-critiques
### [function](7c3c) `40ants-ci/jobs/critic:critic` &key asdf-systems asdf-version ignore-critiques

Creates a job which will run Lisp Critic for given `ASDF` systems.

Expand All @@ -610,13 +610,13 @@ a string. By default, the latest `ASDF` version will be used.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20CLASS-29"></a>

### [class](118f) `40ants-ci/jobs/autotag:autotag` (job)
### [class](deaf) `40ants-ci/jobs/autotag:autotag` (job)

This type of the job created a git tag when finds a new tag in specified file.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20FUNCTION-29"></a>

### [function](3bc0) `40ants-ci/jobs/autotag:autotag` &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*)
### [function](3b00) `40ants-ci/jobs/autotag:autotag` &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*)

Creates a job which will run autotagger to create a new git tag for release.

Expand All @@ -638,30 +638,30 @@ Creates a job which will run autotagger to create a new git tag for release.
[b60c]: https://coveralls.io/
[e681]: https://github.com/40ants/ci
[de0b]: https://github.com/40ants/ci/actions
[241d]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/core.lisp#L570
[118f]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/autotag.lisp#L18
[3bc0]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/autotag.lisp#L44
[1921]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/critic.lisp#L12
[096e]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/critic.lisp#L22
[965f]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/docs.lisp#L14
[b69b]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/docs.lisp#L21
[a3c4]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L111
[9399]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L22
[8156]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L23
[8803]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L25
[ee11]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L32
[3357]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L35
[d371]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L69
[60e1]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L74
[9363]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/job.lisp#L85
[e388]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/linter.lisp#L14
[0b2a]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/linter.lisp#L33
[3694]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/lisp-job.lisp#L26
[3671]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/lisp-job.lisp#L27
[2653]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/lisp-job.lisp#L30
[dc74]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/lisp-job.lisp#L36
[1cb9]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/run-tests.lisp#L18
[3b7a]: https://github.com/40ants/ci/blob/4c5af25f832bca2daa7a6e3f796da93ce2074720/src/jobs/run-tests.lisp#L28
[19df]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/core.lisp#L570
[deaf]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/autotag.lisp#L18
[3b00]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/autotag.lisp#L44
[9a66]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/critic.lisp#L12
[7c3c]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/critic.lisp#L22
[bdad]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/docs.lisp#L14
[0fe3]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/docs.lisp#L21
[6850]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L111
[c907]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L22
[c7c4]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L23
[fe69]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L25
[ad39]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L32
[8b5b]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L35
[50bd]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L69
[0e0b]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L74
[611a]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/job.lisp#L85
[1cf0]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/linter.lisp#L14
[71eb]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/linter.lisp#L33
[4c7f]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/lisp-job.lisp#L24
[ee25]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/lisp-job.lisp#L25
[37d2]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/lisp-job.lisp#L28
[9fae]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/lisp-job.lisp#L34
[b6c8]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/run-tests.lisp#L18
[cdcd]: https://github.com/40ants/ci/blob/a0375b69ce29a8a193e003700f7fafddec1eec0e/src/jobs/run-tests.lisp#L28
[2f94]: https://github.com/cxxxr/sblint
[1cec]: https://github.com/quicklisp/quicklisp-projects/blob/ee133271c81caf5d8bbf8cef3054544ff47b64c6/projects/alexa/source.txt
[2c00]: https://quickdocs.org/40ants-doc
Expand Down

0 comments on commit ed8a4a3

Please sign in to comment.