merge-gatekeeper icon indicating copy to clipboard operation
merge-gatekeeper copied to clipboard

Gatekeeper misses failures in matrix jobs

Open allanlewis opened this issue 2 years ago • 9 comments

I have a matrix job that tests a component in two configurations. When one fails, Merge Gatekeeper passes - the logs don't show my matrix jobs in the list reported for each status.

My matrix job is a Python library and is configured something like this:

jobs:
  test:
    runs-on: ubuntu-18.04
    strategy:
      matrix:
        tox-env: [env1, env2]
      fail-fast: false
    steps:
      - uses: actions/checkout@v2
      - run: tox -e ${{ matrix.tox-env }}

allanlewis avatar Apr 05 '22 10:04 allanlewis