mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 07:23:18 -09:00
15 lines
367 B
YAML
15 lines
367 B
YAML
image: "rust:latest"
|
|
|
|
# Use cargo to test the project
|
|
test:2020:
|
|
script:
|
|
- cd 2020
|
|
- rustc --version && cargo --version # Print version info for debugging
|
|
- cargo test --workspace --verbose -j 8
|
|
|
|
test:2021:
|
|
script:
|
|
- cd 2021
|
|
- rustc --version && cargo --version # Print version info for debugging
|
|
- cargo test --workspace --verbose -j 8
|