mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 21:44:38 +00:00
25 lines
631 B
YAML
25 lines
631 B
YAML
---
|
|
# PR/push test gate. Delegates to the reusable `test-reusable.yml`
|
|
# (frontend Vitest + Rust core + Rust Tauri shell). The same reusable
|
|
# workflow is called by `release-staging.yml` and `release-production.yml`
|
|
# as part of the pretest gate before any build-desktop matrix runs.
|
|
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
uses: ./.github/workflows/test-reusable.yml
|