♻️ Update workflow #202
Workflow file for this run
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: Rust CI | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
TARGET: x86_64-unknown-linux-gnu | |
jobs: | |
cargo-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install xsltproc | |
run: sudo apt-get install -y xsltproc | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ env.TARGET }} | |
- uses: taiki-e/setup-cross-toolchain-action@v1 | |
with: | |
target: ${{ env.TARGET }} | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
cache-on-failure: true | |
- uses: taiki-e/install-action@nextest | |
- name: cargo test | |
run: cargo nextest run --all --all-features --target ${{ env.TARGET }} | |
cargo-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install xsltproc | |
run: sudo apt-get install -y xsltproc | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ env.TARGET }} | |
- uses: taiki-e/setup-cross-toolchain-action@v1 | |
with: | |
target: ${{ env.TARGET }} | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
cache-on-failure: true | |
- name: cargo fmt | |
run: cargo +nightly fmt --all -- --check | |
- name: cargo clippy | |
run: cargo +nightly clippy --all --all-features --target ${{ env.TARGET }} -- -D warnings | |
cargo-build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
continue-on-error: true | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
cache-on-failure: true | |
- name: build | |
id: build | |
continue-on-error: true | |
run: cargo build --all | |
cargo-doc: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
continue-on-error: true | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install xsltproc | |
run: sudo apt-get install -y xsltproc | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ env.TARGET }} | |
- uses: taiki-e/setup-cross-toolchain-action@v1 | |
with: | |
target: ${{ env.TARGET }} | |
- uses: Swatinem/rust-cache@v1 | |
with: | |
cache-on-failure: true | |
- name: doclint | |
id: build | |
continue-on-error: true | |
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --all-features --document-private-items | |
- name: doctest | |
run: cargo test --doc --all --all-features --target ${{ env.TARGET }} | |