Skip to content

Refactor: Organize pipelines. #285

Refactor: Organize pipelines.

Refactor: Organize pipelines. #285

Workflow file for this run

name: CI / CD
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
jobs:
# Lint and check the codebase, including running clippy and checking for unused code.
check:
name: Lint & Check
uses: ./.github/workflows/_check.yml
secrets: inherit
# Build releases for native architectures (windows, linux, macos) and webassembly.
native:
name: Native Builds
needs: check
permissions:
contents: write
uses: ./.github/workflows/_native.yml
secrets: inherit
wasm:
name: WebAssembly
needs: check
permissions:
contents: write
uses: ./.github/workflows/_wasm.yml

Check failure on line 31 in .github/workflows/pipeline.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pipeline.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pipeline.yml" -> "./.github/workflows/_wasm.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
# Build the demo after the wasm build, since it depends on the wasm artifacts.
demo:
name: Build Demo
needs: wasm
permissions:
contents: read
pages: write
id-token: write
uses: ./.github/workflows/_demo.yml
secrets: inherit