CI: fix cargo check-external-types #609
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: Continuous integration | |
on: | |
push: | |
pull_request: | |
merge_group: | |
schedule: | |
- cron: '0 18 * * *' | |
env: | |
check_ext_rust_version: nightly-2024-06-30 | |
# ^ sync with https://github.com/awslabs/cargo-check-external-types/blob/main/rust-toolchain.toml | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- 1.63.0 | |
- nightly | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install ${{ matrix.rust }} toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Cargo update | |
run: cargo update | |
- name: Cargo update (fix for MSRV) | |
run: cargo update -p time --precise 0.3.20 | |
if: matrix.rust == '1.63.0' | |
- run: RUSTFLAGS="-D warnings" cargo check | |
test_features: | |
name: Test suite (with features) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
features: | |
- --features=default | |
- --all-features | |
- --features=bigint,serialize,debug | |
- --features=bigint,serialize,trace | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- run: cargo test ${{ matrix.features }} | |
no_std: | |
name: no-std | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- run: RUSTFLAGS="-D warnings" cargo check --no-default-features | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable rustfmt | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install nightly clippy | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: clippy | |
- run: cargo clippy -- -D warnings | |
doc: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
env: | |
RUSTDOCFLAGS: --cfg docsrs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install nightly rust | |
uses: dtolnay/rust-toolchain@nightly | |
- run: cargo doc --workspace --no-deps --all-features | |
semver: | |
name: Check semver compatibility | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Check semver | |
uses: obi1kenobi/cargo-semver-checks-action@v2 | |
check-external-types: | |
name: Validate external types appearing in public API | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.check_ext_rust_version }} | |
- run: cargo install --locked cargo-check-external-types | |
- run: cargo check-external-types |