Skip to content

doc: use the Ayu theme #161

doc: use the Ayu theme

doc: use the Ayu theme #161

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check:
name: Lints and checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal --component rustfmt --component clippy --no-self-update
- uses: Swatinem/rust-cache@v2
- run: cargo install --path .
- name: Run checks
run: garden -vv check
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal --no-self-update
- uses: Swatinem/rust-cache@v2
- run: cargo install mdbook
- run: cargo install --path .
- name: Build documentation
run: garden -vv doc
test:
name: Test using Rust ${{ matrix.rust }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- run: git config --global init.defaultBranch main
- run: git config --global user.email garden-tools@crates.io
- run: git config --global user.name Garden
- run: rustup toolchain install ${{ matrix.rust }} --profile minimal --no-self-update
- uses: Swatinem/rust-cache@v2
- name: Run build
run: cargo build
- name: Run tests
run: cargo test -v