name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
RUSTDOCFLAGS: "--deny warnings"
RUSTFLAGS: "--deny warnings"
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
toolchain: ["stable", "nightly"]
target: ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
steps:
- uses: actions/checkout@v2
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
target: ${{ matrix.target }}
toolchain: ${{ matrix.toolchain }}
override: true
- name: Build with std
run: cargo build --target ${{ matrix.target }}
- name: Test with std
run: cargo test --target ${{ matrix.target }} --all-features -- --nocapture
- name: Build without std
run: cargo build --target ${{ matrix.target }} --no-default-features
- name: Test without std
run: cargo test --target ${{ matrix.target }} --no-default-features -- --nocapture
documentation:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Generate documentation
run: cargo doc --all-features
- name: Install cargo-deadlinks
run: cargo install cargo-deadlinks
- name: Check dead links in doc
run: cargo deadlinks
clippy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features