CI: make a workspace
Some checks failed
test / AoC 2024 (push) Failing after 1m7s

This commit is contained in:
Keenan Tims 2024-12-13 18:09:16 -08:00
parent d88f907c03
commit 8b011941c4
Signed by: ktims
GPG Key ID: 11230674D69038D4
3 changed files with 15 additions and 3 deletions

View File

@ -21,10 +21,10 @@ jobs:
toolchain: stable
- name: cargo test
run: cargo test --all-features
run: cargo test --lib --all-features
- name: rustfmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --all --all-features --tests -- -D warnings
# - name: clippy
# run: cargo clippy --lib --all-features --tests -- -D warnings

8
Cargo.lock generated
View File

@ -29,6 +29,14 @@ version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
[[package]]
name = "aoc-autobuild"
version = "0.3.0"
dependencies = [
"aoc-runner",
"aoc2024",
]
[[package]]
name = "aoc-runner"
version = "0.3.0"

View File

@ -18,3 +18,7 @@ thread_local = "1.1.8"
[profile.release]
lto = true
[workspace]
members = [ ".", "utils/grid", "target/aoc/aoc-autobuild" ]
default-members = [ ".", "utils/*" ]