mirror of
https://github.com/theoludwig/advent_of_code_2023.git
synced 2024-10-29 22:17:19 +01:00
27 lines
505 B
YAML
27 lines
505 B
YAML
name: "ci"
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: "always"
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: "ubuntu-latest"
|
|
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- uses: "dtolnay/rust-toolchain@stable"
|
|
with:
|
|
components: "clippy, rustfmt"
|
|
- run: "rustc --version"
|
|
|
|
- run: "cargo build --verbose"
|
|
- run: "cargo test --verbose"
|
|
- run: "cargo clippy --verbose -- -D warnings"
|
|
- run: "cargo fmt -- --check"
|