Skip to content

Readme.md: badges

Readme.md: badges #1

Workflow file for this run

name: Rust
on:
push: {branches: [ master ]}
pull_request: {branches: [ master ]}
env:
CARGO_TERM_COLOR: always
jobs:
windows:
name: Windows 2019 Server
runs-on: windows-2019
steps:
- {uses: actions/checkout@v2}
- {name: Info, run: [rustc -V, cargo -V, cmd /C ver] }

Check failure on line 16 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 16, Col: 46): A sequence was not expected .github/workflows/rust.yml (Line: 26, Col: 25): A sequence was not expected
- {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}
- {name: Test (all features), run: cargo t --target-dir=target/all-features --all-features}
linux:
name: Ubuntu Latest
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: 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}
- {name: Test (all features), run: cargo t --target-dir=target/all-features --all-features}