mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
34 lines
545 B
YAML
34 lines
545 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
format:
|
|
name: Format Check
|
|
uses: ./.github/workflows/format.yml
|
|
secrets: inherit
|
|
|
|
lint:
|
|
name: Lint
|
|
uses: ./.github/workflows/lint.yml
|
|
secrets: inherit
|
|
|
|
test:
|
|
name: Test
|
|
uses: ./.github/workflows/test.yml
|
|
secrets: inherit
|
|
|
|
build:
|
|
name: Build
|
|
needs: [lint, test, format]
|
|
uses: ./.github/workflows/build.yml
|
|
secrets: inherit
|