name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
RUSTFLAGS: '-C debuginfo=0'
jobs:
build:
name: Build [${{ matrix.rust }}]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [1.34.0, stable]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Build and test
run: |
# TODO: Once we bump our minimum supported Rust version to 1.56
# we should use cargo's --profile option here and have
# --release builds happen concurrently as part of the
# job matrix.
cargo test
cargo build --lib --tests --release
clippy:
name: Lint with clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- run: cargo clippy --lib --bins --tests --examples -- -A unknown_lints -D warnings
cargo-doc:
name: Generate documentation
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: '-A unknown_lints -D warnings'
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: cargo doc --no-deps