Skip to content

Update Leptos documentation #14

Update Leptos documentation

Update Leptos documentation #14

Workflow file for this run

name: CI
on: [push, pull_request]
env:
RUSTFLAGS: '-Dwarnings'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup toolchain install nightly --no-self-update --profile default --target wasm32-unknown-unknown
- uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Check formatting
run: cargo fmt --all --check
- name: Lint
run: cargo clippy --all-features
- name: Test
run: cargo test --all-features