Skip to content

Commit 07a369c

Browse files
authored
Merge pull request #9 from wiktor-k/wiktor/better-support-for-multiple-cards
Fix support for multiple cards
2 parents a8d7825 + 66639db commit 07a369c

8 files changed

Lines changed: 589 additions & 338 deletions

File tree

.justfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/usr/bin/env -S just --working-directory . --justfile
22
# Load project-specific properties from the `.env` file
33

4-
set dotenv-load := true
4+
set dotenv-load
55

66
# Since this is a first recipe it's being run by default.
77
# Faster checks need to be executed first for better UX. For example
88
# codespell is very fast. cargo fmt does not need to download crates etc.
99

1010
# Perform all checks
11+
[parallel]
1112
check: spelling formatting docs lints dependencies tests
1213

1314
# Checks common spelling mistakes
@@ -26,6 +27,10 @@ lints:
2627

2728
# Checks for issues with dependencies
2829
dependencies:
30+
#!/usr/bin/env bash
31+
set -euo pipefail
32+
# workaround for: https://github.com/EmbarkStudios/cargo-deny/issues/854
33+
unset GIT_WORK_TREE
2934
cargo deny check
3035

3136
# Runs all unit tests. By default ignored tests are not run. Run with `ignored=true` to run only ignored tests

0 commit comments

Comments
 (0)