Skip to content

chore: Release mdbook-dtmo version 0.15.2 #47

chore: Release mdbook-dtmo version 0.15.2

chore: Release mdbook-dtmo version 0.15.2 #47

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build_and_test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: tests
run: cargo test --all
check_fmt_and_docs:
name: Checking fmt and docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: fmt
run: cargo fmt --all -- --check
- name: Docs
run: cargo doc