-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathjustfile
More file actions
29 lines (20 loc) · 782 Bytes
/
justfile
File metadata and controls
29 lines (20 loc) · 782 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
default: build
container-build:
devcontainer build --workspace-folder .
container-up:
devcontainer up --workspace-folder .
shell: container-up
devcontainer exec --workspace-folder . bash
format: container-up
devcontainer exec --workspace-folder . format
build: container-up
devcontainer exec --workspace-folder . build-all
repl: container-up
devcontainer exec --workspace-folder . cabal repl
haddock: container-up
devcontainer exec --workspace-folder . cabal haddock
fullbuild: container-build format build
# to run this, your (classic) token must have "repo" and "read:packages"
# to upload the container, it must have "write:packages" and you should be a member of the Haskell org.
act:
act -s GITHUB_TOKEN="$(gh auth token)" -j build-new