Skip to content

Commit

Permalink
refactor: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmah309 committed Sep 11, 2024
1 parent b582981 commit 5f26f1b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Run std tests
run: cargo test --verbose --tests
- name: Run no_std tests
run: rustup target add x86_64-unknown-none && cd tests/no_std/ && cargo run
run: rustup target add x86_64-unknown-none && cd test_no_std && cargo run
- name: Run feature flags tests
run: cargo test --tests --features coerce_macro && cargo test --tests --features tracing && cargo test --tests --features log
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy_static = "1"

[workspace]
members = ["impl"]
exclude = ["tests/no_std"]
exclude = ["test_no_std"]

[features]
default = []
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/no_std/Cargo.toml → test_no_std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
error_set = { path = "../.." }
error_set = { path = "../" }

[[bin]]
name = "no_std"
Expand Down
File renamed without changes.

0 comments on commit 5f26f1b

Please sign in to comment.