Compare commits
1 Commits
b060de20c7
...
045ff818bd
Author | SHA1 | Date | |
---|---|---|---|
045ff818bd |
18
.github/workflows/test.yaml
vendored
18
.github/workflows/test.yaml
vendored
@ -2,14 +2,14 @@ name: test
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
setup:
|
||||||
name: AoC 2024
|
name: Setup
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -41,11 +41,14 @@ jobs:
|
|||||||
cargo aoc credentials ${{ secrets.AOC_SESSION }}
|
cargo aoc credentials ${{ secrets.AOC_SESSION }}
|
||||||
for i in $(seq 1 25); do
|
for i in $(seq 1 25); do
|
||||||
dayfmt=$(printf %02d $i)
|
dayfmt=$(printf %02d $i)
|
||||||
if [${{ steps.date.outputs.date }} -ge 202412${dayfmt}]; then
|
if [ ${{ steps.date.outputs.date }} -ge 202412${dayfmt} ]; then
|
||||||
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
|
||||||
|
|
||||||
@ -54,6 +57,9 @@ 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
|
||||||
|
@ -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() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user