Summary
Jobs
Check (examples/animated_show)
Check (examples/counter)
Check (examples/counter_isomorphic)
Check (examples/counter_url_query)
Check (examples/counter_without_macros)
Check (examples/counters)
Check (examples/counters_stable)
Check (examples/error_boundary)
Check (examples/errors_axum)
Check (examples/fetch)
Check (examples/hackernews)
Check (examples/hackernews_axum)
Check (examples/hackernews_islands_axum)
Check (examples/hackernews_js_fetch)
Check (examples/js-framework-benchmark)
Check (examples/leptos-tailwind-axum)
Check (examples/login_with_token_csr_only)
Check (examples/parent_child)
Check (examples/router)
Check (examples/session_auth_axum)
Check (examples/slots)
Check (examples/ssr_modes)
Check (examples/ssr_modes_axum)
Check (examples/suspense_tests)
Check (examples/tailwind)
Check (examples/tailwind_csr_trunk)
Check (examples/timer)
Check (examples/todo_app_sqlite)
Check (examples/todo_app_sqlite_axum)
Check (examples/todo_app_sqlite_viz)
Check (examples/todomvc)
get-leptos-changed
get-examples-matrix
Workflow file for this run
This file contains 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: Check Examples
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
get-leptos-changed:
uses: ./.github/workflows/get-leptos-changed.yml
get-examples-matrix:
uses: ./.github/workflows/get-examples-matrix.yml
test:
name: Check
needs: [get-leptos-changed, get-examples-matrix]
if: needs.get-leptos-changed.outputs.leptos_changed == 'true'
strategy:
matrix: ${{ fromJSON(needs.get-examples-matrix.outputs.matrix) }}
fail-fast: false
uses: ./.github/workflows/run-cargo-make-task.yml
with:
directory: ${{ matrix.directory }}
cargo_make_task: "check"
toolchain: nightly
You can’t perform that action at this time.