pruning #60
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: Starlight CI | |
# FIXME | |
on: [] | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
test_suite: | |
name: Test suite | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: -D warnings | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust components | |
run: | | |
rustup set profile minimal | |
rustup default nightly | |
- name: Run test suite | |
run: | | |
cargo test --all-features | |
cargo test --release --all-features | |
msrv_test_suite: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: -D warnings | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust components | |
run: | | |
rustup set profile minimal | |
rustup install nightly-2023-04-14 | |
- name: Run test suite | |
run: | | |
cargo test --all-features | |
cargo test --release --all-features | |
rustfmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Acquire the most recent nightly with a rustfmt component | |
- name: Install most recent Rustfmt | |
run: | | |
rustup set profile minimal | |
rustup default "nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/rustfmt)" | |
rustup component add rustfmt | |
- name: Run `cargo fmt` | |
run: | | |
cargo fmt -- --check | |
cd no_alloc_test && cargo fmt -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Acquire the most recent nightly with a clippy component | |
- name: Install most recent Clippy | |
run: | | |
rustup set profile minimal | |
rustup default "nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy)" | |
rustup component add clippy | |
- name: Run `cargo clippy` | |
run: | | |
cargo clippy --all --all-targets --all-features -- -D clippy::all |