public API overhaul #242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ci" | |
on: | |
# Run using manual triggers from GitHub UI: | |
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | |
workflow_dispatch: {} | |
# Run on every pull request (external branches): | |
pull_request: {} | |
# Run on pushes to internal branches: | |
# Except 'main', which is handled by 'deploy.yml'. | |
push: | |
branches-ignore: | |
- "main" | |
jobs: | |
ci: | |
uses: "./.github/workflows/_jobs_ci.yml" |