19 lines
290 B
YAML
19 lines
290 B
YAML
name: CI (SaaS)
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test_oss:
|
|
name: Test (OSS)
|
|
uses: ./.github/workflows/test.yml
|
|
with:
|
|
saas: false
|
|
test_saas:
|
|
name: Test (SaaS)
|
|
uses: ./.github/workflows/test.yml
|
|
with:
|
|
saas: true
|
|
secrets:
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|