Skip to content

ci: use cargo nono to check for no_std compatibility violations #164

ci: use cargo nono to check for no_std compatibility violations

ci: use cargo nono to check for no_std compatibility violations #164

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
conf:
- stable
- msrv
include:
- conf: stable
toolchain: stable
- conf: nightly
toolchain: nightly
- conf: msrv
toolchain: '1.66'
env:
RUST_BACKTRACE: 1
# For other ways of skipping CI runs, see: https://docs.github.com/en/actions/managing-workflow-runs/skipping-workflow-runs
if: >-
(github.event_name == 'push' && !endsWith(github.event.head_commit.message, 'CI: skip')) ||
(github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.names, 'skip-ci'))
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-nono
if: matrix.conf == 'nightly'
uses: taiki-e/install-action@v2
with:
tool: cargo-nono
- name: Run rustfmt
if: matrix.conf == 'nightly'
run: cargo fmt --check --verbose -- --color=always
- name: Run linter
if: matrix.conf == 'nightly'
run: cargo clippy
- name: Run tests
run: make zopfli && make test
- name: Run tests (no-std)
if: matrix.conf == 'nightly'
run: cargo test --release --no-default-features --features nightly
# The documentation generation command should match what's defined on
# Cargo.toml's `package.metadata.docs.rs` section for docs.rs
- name: Generate documentation
if: matrix.conf == 'nightly'
run: cargo doc --all-features
- name: Check effective no_std compatibility
if: matrix.conf == 'nightly'
run: |
# Temporarily drop the binary crate so that cargo nono does not
# get confused about what crate to analyze: we are only interested
# in the library one
sed -i 's;^bin = ;#&;' Cargo.toml
rm src/main.rs
cargo nono check --no-default-features --features gzip,zlib