Format output using prettyplease

This commit is contained in:
David Tolnay 2022-01-12 13:24:43 -08:00
parent 2a14aaa9d4
commit 3176152239
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
4 changed files with 88 additions and 34 deletions

View file

@ -19,6 +19,8 @@ jobs:
components: rustfmt
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs
- run: diff tests/lib.expand.rs expand.rs
- run: cargo run --features prettyplease -- expand --manifest-path tests/Cargo.toml > expand.rs
- run: diff tests/lib.expand.rs expand.rs
build:
name: Rust ${{matrix.rust}}
@ -27,15 +29,18 @@ jobs:
fail-fast: false
matrix:
# beta broken: https://github.com/rust-lang/rust/issues/91872
#rust: [nightly, beta, stable, 1.54.0]
rust: [nightly, stable, 1.54.0]
#rust: [nightly, beta, stable, 1.56.0]
rust: [nightly, stable, 1.56.0]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo check
- run: cargo update && cargo check
- run: cargo check --features prettyplease
- run: cargo update
- run: cargo check
- run: cargo check --features prettyplease
- run: cargo test
clippy: