Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
.git
target
target

# Local devbox toolchain (~1.3GB). It self-ignores via .devbox/.gitignore, which
# .dockerignore does not honour, so it has to be excluded explicitly.
.devbox
.envrc
devbox.json
devbox.lock
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
uses: actions/checkout@v4

- name: build
run: cargo build --release
run: cargo build --release --locked --workspace

- name: test
run: cargo test
run: cargo test --workspace

docker:
name: push docker image to hub
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
target
.DS_Store
.envrc
Loading
Loading