mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
* fix: improve CI workflow * fix: add missing `Makefile.toml` to workspace crates (reactive_stores and reactive_stores_macro) * fix: remove trailing slash in workflow names * fix: add gtk example and improve excluding example's logic * fix: install gtk example deps
28 lines
697 B
YAML
28 lines
697 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- leptos_0.6
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- leptos_0.6
|
|
jobs:
|
|
get-leptos-changed:
|
|
uses: ./.github/workflows/get-leptos-changed.yml
|
|
get-leptos-matrix:
|
|
uses: ./.github/workflows/get-leptos-matrix.yml
|
|
test:
|
|
name: CI
|
|
needs: [get-leptos-changed, get-leptos-matrix]
|
|
if: needs.get-leptos-changed.outputs.leptos_changed == 'true'
|
|
strategy:
|
|
matrix: ${{ fromJSON(needs.get-leptos-matrix.outputs.matrix) }}
|
|
fail-fast: false
|
|
uses: ./.github/workflows/run-cargo-make-task.yml
|
|
with:
|
|
directory: ${{ matrix.directory }}
|
|
cargo_make_task: "ci"
|
|
toolchain: nightly-2024-08-01
|