feat: add web icon and show just rust communties in the index #194
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clippy | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "extras" | |
- ".rusty-hook.toml" | |
- ".github/workflows/gh-pages.yml" | |
- "**/Makefile.toml" | |
- "README.md" | |
jobs: | |
fmt: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Update submodule | |
run: | | |
git submodule update --remote | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly-2024-02-12 | |
target: wasm32-unknown-unknown | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build | |
run: cargo build --features=ssr,hydrate | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
leptosfmt: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
components: clippy | |
- name: Cache .cargo and target | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo | |
key: ${{ runner.os }}-cargo-leptos-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-leptos-${{ hashFiles('**/Cargo.lock') }} | |
${{ runner.os }}-cargo-leptos | |
- name: Install LeptosFmt | |
run: cargo install leptosfmt --version 0.1.13 | |
- name: Check LeptosFmt | |
run: leptosfmt --check . | |
clippy: | |
needs: [fmt, leptosfmt] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- name: cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --features=ssr,hydrate -- -D warnings |