durandtibo/hya

View on GitHub
.github/workflows/ci.yaml

Summary

Maintainability
Test Coverage
name: CI
on:
  pull_request:
    branches:
      - main
  push:
    branches:
      - main
  workflow_dispatch:  # to trigger manually

jobs:
  coverage:
    uses: ./.github/workflows/coverage.yaml
    secrets: inherit
  doctest:
    uses: ./.github/workflows/doctest.yaml
    secrets: inherit
  format:
    uses: ./.github/workflows/format.yaml
  pre-commit:
    uses: ./.github/workflows/pre-commit.yaml
  test:
    uses: ./.github/workflows/test.yaml
  test-deps:
    uses: ./.github/workflows/test-deps.yaml