Makefile
1# SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
2#
3# SPDX-License-Identifier: CC0-1.0
4
5.PHONY: all fmt fmt-check lint check test ci
6
7all: fmt lint check test
8
9fmt:
10 lx fmt
11
12fmt-check:
13 lx fmt --check
14
15lint:
16 lx lint
17
18check:
19 lx check
20
21test:
22 lx test
23
24ci: fmt-check lint check test