rustlings/.github/workflows/rust.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2022-07-15 07:46:03 -04:00
name: Rustlings Tests
on:
push:
2024-04-17 04:35:29 -04:00
branches: [main]
2022-07-15 07:46:03 -04:00
pull_request:
2024-04-17 04:35:29 -04:00
branches: [main]
2022-07-15 07:46:03 -04:00
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy -- --deny warnings
2023-09-04 08:57:16 -04:00
fmt:
2022-07-15 07:46:03 -04:00
runs-on: ubuntu-latest
steps:
2024-07-03 11:49:41 -04:00
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v16
2023-09-04 08:57:16 -04:00
with:
globs: "exercises/**/*.md"
- name: Run cargo fmt
2024-07-13 06:32:23 -04:00
run: cargo fmt --all --check
- name: Run rustfmt on solutions
run: rustfmt --check --edition 2021 --color always solutions/**/*.rs
2023-09-04 08:57:16 -04:00
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
2024-07-03 11:49:41 -04:00
- uses: actions/checkout@v4
2023-09-04 08:57:16 -04:00
- uses: swatinem/rust-cache@v2
- name: Run cargo test
2024-07-13 06:32:23 -04:00
run: cargo test --workspace
2024-07-03 11:59:10 -04:00
dev-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
2024-07-03 11:49:41 -04:00
- name: Run rustlings dev check
2024-07-04 07:41:03 -04:00
run: cargo run -- dev check --require-solutions