Skip to content

Commit

Permalink
♻️ Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Oct 22, 2023
1 parent 04d56c9 commit c5b94ee
Showing 1 changed file with 32 additions and 24 deletions.
56 changes: 32 additions & 24 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,57 +1,63 @@
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 Rust toolchain
uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@nightly
with:
target: ${{ env.TARGET }}
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
toolchain: nightly
profile: minimal
override: true
target: ${{ env.TARGET }}
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: Install xsltproc
run: sudo apt-get install -y xsltproc
- uses: taiki-e/install-action@nextest
- name: cargo test
run: cargo test --all --all-features
run: cargo nextest run --workspace --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 Rust toolchain
uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly
profile: minimal
components: rustfmt, clippy
override: true
target: ${{ env.TARGET }}
components: rustfmt
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ env.TARGET }}
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: Install xsltproc
run: sudo apt-get install -y xsltproc
- name: cargo fmt
run: cargo +nightly fmt --all -- --check
- name: cargo clippy
run: cargo +nightly clippy --all --all-features -- -D warnings
run: cargo +nightly clippy --workspace --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
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly
profile: minimal
override: true
target: ${{ env.TARGET }}
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
Expand All @@ -66,19 +72,21 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@nightly
with:
target: ${{ env.TARGET }}
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
toolchain: nightly
profile: minimal
override: true
target: ${{ env.TARGET }}
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: Install xsltproc
run: sudo apt-get install -y xsltproc
- 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
run: cargo test --doc --all --all-features --target ${{ env.TARGET }}

0 comments on commit c5b94ee

Please sign in to comment.