mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Format output using prettyplease
This commit is contained in:
parent
2a14aaa9d4
commit
3176152239
4 changed files with 88 additions and 34 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue