-
Notifications
You must be signed in to change notification settings - Fork 8
/
Earthfile
44 lines (30 loc) · 1.17 KB
/
Earthfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
VERSION 0.8
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.2.24 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.2.24 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.2.24 AS postgresql-ci
FROM debian:stable-slim
# cspell: words livedocs sitedocs
# check-markdown markdown check using catalyst-ci.
check-markdown:
DO mdlint-ci+CHECK
# markdown-check-fix markdown check and fix using catalyst-ci.
markdown-check-fix:
LOCALLY
DO mdlint-ci+MDLINT_LOCALLY --src=$(echo ${PWD}) --fix=--fix
# clean-spelling-list : Make sure the project dictionary is properly sorted.
clean-spelling-list:
DO cspell-ci+CLEAN
# check-spelling Check spelling in this repo inside a container.
check-spelling:
DO cspell-ci+CHECK
# check if the sql files are properly formatted and pass lint quality checks.
check-sqlfluff:
FROM postgresql-ci+postgres-base
COPY . .
DO postgresql-ci+CHECK
repo-docs:
# Create artifacts of extra files we embed inside the documentation when its built.
FROM scratch
WORKDIR /repo
COPY --dir *.md LICENSE-APACHE LICENSE-MIT .
SAVE ARTIFACT /repo repo