Skip to content

chore(deps): Bump leptos from 0.8.19 to 0.8.20 #114

chore(deps): Bump leptos from 0.8.19 to 0.8.20

chore(deps): Bump leptos from 0.8.19 to 0.8.20 #114

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
jobs:
ci:
name: fmt / clippy / test / doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust (stable + rustfmt + clippy)
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-features
- name: Docs
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings