Skip to content

Revamp course around database expression framework #74

Revamp course around database expression framework

Revamp course around database expression framework #74

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Rust toolchain
run: rustup show active-toolchain
- uses: taiki-e/install-action@mdbook
- name: Check code format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features --locked -- -D warnings
- name: Test
run: cargo test --no-fail-fast --workspace --all-features --locked
- name: Build book
run: mdbook build tutorial