1
1
mirror of https://github.com/theoludwig/advent_of_code.git synced 2025-02-20 14:38:48 +01:00

32 lines
654 B
YAML
Raw Permalink Normal View History

2023-12-01 17:26:01 +01:00
name: "ci"
on:
2023-12-08 18:56:07 +01:00
push:
branches: ["main"]
pull_request:
branches: ["main"]
2023-12-01 17:26:01 +01:00
env:
2023-12-08 18:56:07 +01:00
CARGO_TERM_COLOR: "always"
2023-12-01 17:26:01 +01:00
jobs:
2023-12-08 18:56:07 +01:00
ci:
timeout-minutes: 30
2023-12-08 18:56:07 +01:00
runs-on: "ubuntu-latest"
strategy:
matrix:
rust-version: ["1.84.1", "stable"]
2023-12-08 18:56:07 +01:00
steps:
- uses: "actions/checkout@v4.2.2"
- uses: "dtolnay/rust-toolchain@master"
2023-12-08 18:56:07 +01:00
with:
toolchain: "${{ matrix.rust-version }}"
2023-12-08 18:56:07 +01:00
components: "clippy, rustfmt"
2023-12-01 17:26:01 +01:00
- run: "rustc --version"
2023-12-08 18:56:07 +01:00
- run: "cargo build --verbose"
- run: "cargo test --verbose"
- run: "cargo clippy --verbose -- -D warnings"
- run: "cargo fmt -- --check"