Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 22, 2024
1 parent 0119cf3 commit 82e0039
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: extract_hash

- name: Install nix
uses: cachix/install-nix-action@v27
uses: cachix/install-nix-action@v30

- name: Nix cache
id: cache-nix-packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: compile-env is self
run: just _ci-compile-env-hack
- run: just cargo build
- run: just cargo test
- run: just cargo build --release
- run: just cargo test
- run: just cargo test --release
52 changes: 0 additions & 52 deletions design-docs/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ SHELL := shell("""
echo ${SHELL:-sh}
""")

set shell := [x"${SHELL:-sh}", x"-euo", "pipefail", "-c"]
set script-interpreter := [x"${SHELL:-sh}", x"-euo", "pipefail"]
set shell := [x"${SHELL:-bash}", "-euo", "pipefail", "-c"]
set script-interpreter := [x"${SHELL:-bash}", "-euo", "pipefail"]
set dotenv-load := true
set dotenv-required := true
set dotenv-filename := "just.env"
Expand Down

0 comments on commit 82e0039

Please sign in to comment.