{feature} replace existing builders with new implementation #25
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
build: [stable, beta, nightly, macos] # , windows] | |
include: | |
- build: stable | |
os: ubuntu-latest | |
rust: stable | |
experimental: false | |
- build: beta | |
os: ubuntu-latest | |
rust: beta | |
experimental: true | |
- build: nightly | |
os: ubuntu-latest | |
rust: nightly | |
experimental: true | |
- build: macos | |
os: macos-latest | |
rust: stable | |
experimental: false | |
# TODO enable tests on windows once alternative for getting the mdbook | |
# version from Cargo.lock is found | |
# | |
# - build: windows | |
# os: windows-latest | |
# rust: stable | |
# experimental: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
run: scripts/ci/install-rust.sh ${{ matrix.rust }} | |
- name: Install mdbook | |
shell: bash | |
run: | | |
cargo install mdbook --no-default-features \ | |
--version $(echo '/name = "mdbook"/+' | ed -s Cargo.lock | cut -d= -f2 | tr -d ' "') | |
- name: Build and run tests | |
run: cargo test --locked | |
- name: Test no default | |
run: cargo test --no-default-features | |
rustfmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
run: rustup update stable && rustup default stable && rustup component add rustfmt | |
- run: cargo fmt --check |