cffb527956
The pull_request branch filter meant the test/lint/coverage matrix only ran on PRs targeting main or v1.x. Stacked PRs (targeting feature branches) only got the conformance checks, which are continue-on-error and don't exercise unit tests. Removing the filter so the full matrix runs on every PR.
24 lines
404 B
YAML
24 lines
404 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["main", "v1.x"]
|
|
tags: ["v*.*.*"]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
checks:
|
|
uses: ./.github/workflows/shared.yml
|
|
|
|
all-green:
|
|
if: always()
|
|
needs: [checks]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
with:
|
|
jobs: ${{ toJSON(needs) }}
|