mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
351701036b
* refactor(workflows): extract leptos changed * refactor(workflows): rename matrix job * refactor(workflows): extract examples matrix * chore(workflows): simulate leptos change * chore(workflows): remove simulated leptos change
25 lines
526 B
YAML
25 lines
526 B
YAML
name: CI Examples
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- v*
|
|
schedule:
|
|
# Run once a day at 3:00 AM EST
|
|
- cron: "0 8 * * *"
|
|
|
|
jobs:
|
|
get-examples-matrix:
|
|
uses: ./.github/workflows/get-examples-matrix.yml
|
|
|
|
test:
|
|
name: CI
|
|
needs: [get-examples-matrix]
|
|
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: "ci"
|