Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MaulingMonkey committed Feb 13, 2024
1 parent 60cab5b commit c372346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-2019
steps:
- {uses: actions/checkout@v2}
- {name: Info, run: [rustc -V, cargo -V, cmd /C ver] }
- {name: Info, run: rustc -V && cargo -V && cmd /C ver }
- {name: Build (default features), run: cargo b --target-dir=target/default-features }
- {name: Test (default features), run: cargo t --target-dir=target/default-features }
- {name: Build (all features), run: cargo b --target-dir=target/all-features --all-features}
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- {uses: actions/checkout@v2}
- {name: Info, run: [rustc -V, cargo -V, rustc +stable -V, cargo +stable -V, cat /proc/version /etc/*-release]}
- {name: Info, run: rustc -V && cargo -V && rustc +stable -V && cargo +stable -V && cat /proc/version /etc/*-release}
- {name: Build (default features), run: cargo b --target-dir=target/default-features }
- {name: Test (default features), run: cargo t --target-dir=target/default-features }
- {name: Build (all features), run: cargo b --target-dir=target/all-features --all-features}
Expand Down

0 comments on commit c372346

Please sign in to comment.