mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-27 09:45:53 +00:00
30 lines
No EOL
459 B
YAML
30 lines
No EOL
459 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
swift:
|
|
name: Swift CI
|
|
uses: ./.github/workflows/swift.yml
|
|
|
|
ios:
|
|
name: iOS CI
|
|
uses: ./.github/workflows/ios.yml
|
|
|
|
rust:
|
|
name: Rust CI
|
|
uses: ./.github/workflows/rust.yml
|
|
|
|
node:
|
|
name: Node.js CI
|
|
uses: ./.github/workflows/node.yml |