-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
41 lines (29 loc) · 837 Bytes
/
justfile
File metadata and controls
41 lines (29 loc) · 837 Bytes
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
[private]
default:
just --list
check: format lint jslint
just test -m 'not\ network'
set positional-arguments
test *args='':
uv run pytest {{ args }}
lint:
uv run ty check
format:
uv run ruff format tests github_linter
uv run ruff check tests github_linter
jslint:
biome check --verbose
docker_build:
docker build -t 'ghcr.io/yaleman/github_linter:latest' \
.
docker_run:
docker run --rm -it \
-p 8000:8000 \
--env-file .envrc -e "GITHUB_TOKEN=${GITHUB_TOKEN}" \
'ghcr.io/yaleman/github_linter:latest' \
python -m github_linter.web
workflow_stats:
docker run --rm -it \
--env-file .envrc -e "GITHUB_TOKEN=${GITHUB_TOKEN}" \
'ghcr.io/yaleman/github_linter:latest' \
python -m github_linter.workflow_stats -f yaleman/pygoodwe