Compare commits

..

2 Commits

Author SHA1 Message Date
b060de20c7
day11: clippies
All checks were successful
test / AoC 2024 (push) Successful in 3m7s
2024-12-13 23:44:46 -08:00
bc7ec50c94
CI: get real inputs, and do a full run 2024-12-13 23:44:29 -08:00
2 changed files with 43 additions and 49 deletions

View File

@ -8,8 +8,8 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
setup: tests:
name: Setup name: AoC 2024
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -45,10 +45,7 @@ jobs:
cargo aoc input --year 2024 --day $i cargo aoc input --year 2024 --day $i
fi fi
done done
test:
runs-on: ubuntu-latest
name: Test and Lint
steps:
- name: cargo test - name: cargo test
run: cargo test --lib --all-features run: cargo test --lib --all-features
@ -57,9 +54,6 @@ jobs:
- name: clippy - name: clippy
run: cargo clippy --lib --all-features --tests -- -D warnings run: cargo clippy --lib --all-features --tests -- -D warnings
run:
runs-on: ubuntu-latest
name: Full run
steps:
- name: full run - name: full run
run: cargo run --release run: cargo run --release

View File

@ -89,7 +89,7 @@ pub fn part2(input: &str) -> IntType {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
pub const EXAMPLE: &str = &"125 17"; pub const EXAMPLE: &str = "125 17";
#[test] #[test]
fn part1_example() { fn part1_example() {