feat(compliance): pull in final extra tests and change VT to newline #480
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
fmt_and_docs: | |
name: Check fmt & build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: rustfmt | |
override: true | |
- name: rustfmt | |
run: cargo fmt --all -- --check | |
- name: docs | |
run: cargo doc --no-deps | |
build_and_test: | |
name: Build & Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
rust: [1.70.0, stable] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
components: clippy | |
override: true | |
- name: Clippy | |
run: cargo clippy --all -- -D warnings | |
- name: Run tests | |
run: cargo test --features span --features --v1 --all --verbose |