Files
2025-11-14 06:45:43 -03:00

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