Skip to content

Commit 82e0039

Browse files
committed
cleanup
1 parent 0119cf3 commit 82e0039

File tree

4 files changed

+4
-56
lines changed

4 files changed

+4
-56
lines changed

.github/workflows/build-and-deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: extract_hash
2626

2727
- name: Install nix
28-
uses: cachix/install-nix-action@v27
28+
uses: cachix/install-nix-action@v30
2929

3030
- name: Nix cache
3131
id: cache-nix-packages

.github/workflows/build-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
- name: compile-env is self
2323
run: just _ci-compile-env-hack
2424
- run: just cargo build
25-
- run: just cargo test
2625
- run: just cargo build --release
26+
- run: just cargo test
2727
- run: just cargo test --release

design-docs/README.md

Lines changed: 0 additions & 52 deletions
This file was deleted.

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ SHELL := shell("""
1919
echo ${SHELL:-sh}
2020
""")
2121

22-
set shell := [x"${SHELL:-sh}", x"-euo", "pipefail", "-c"]
23-
set script-interpreter := [x"${SHELL:-sh}", x"-euo", "pipefail"]
22+
set shell := [x"${SHELL:-bash}", "-euo", "pipefail", "-c"]
23+
set script-interpreter := [x"${SHELL:-bash}", "-euo", "pipefail"]
2424
set dotenv-load := true
2525
set dotenv-required := true
2626
set dotenv-filename := "just.env"

0 commit comments

Comments
 (0)