21 lines
457 B
YAML
21 lines
457 B
YAML
# Path-filtered CI may skip; this always runs. Push includes main so the check
|
|
# runs on the default branch — GitHub only lists a workflow under “required status
|
|
# checks” after it has completed on the default branch at least once.
|
|
name: PR gate
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches:
|
|
- "**"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Gate
|
|
run: "true"
|