GitHubGithub GH-600 Agentic AI Developer Certification ·EN ·Updated 15 Jul 2026

A team configures a matrix workflow so each agent role writes a separate audit file. The team also wants an index artifact that can still be created when one agent role fails. Evaluate the following statements. 1. The matrix job can create one run-scoped artifact per agent role. 2. The index job downloads the role artifacts before creating the index. 3. The index job can run even if one matrix role fails.

name: multi-agent-observe

on:
  pull_request:
    branches:
      - main

permissions:
  contents: read
  actions: read
  pull-requests: read

jobs:
  agent:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
         agent: [planner, implementer, reviewer]
    steps:
      - uses: actions/checkout@v4

         - name: Run agent role
           run: |
             mkdir -p audit
             ./agents/run-${{ matrix.agent }}.sh > audit/${{ matrix.agent }}.json

         - name: Upload role audit
           if: ${{ always() }}
           uses: actions/upload-artifact@v4
           with:
             name: agent-${{ matrix.agent }}-audit-${{ github.run_id }}
             path: audit/${{ matrix.agent }}.json
             retention-days: 30

   audit-index:
     needs: agent
     if: ${{ always() }}
     runs-on: ubuntu-latest
     steps:
       - name: Create index
         run: |
            mkdir -p audit
            echo "run=${{ github.run_id }}" > audit/index.md
            echo "source=matrix agent artifacts" >> audit/index.md

         - name: Upload index
           uses: actions/upload-artifact@v4
           with:
             name: audit-index-${{ github.run_id }}
             path: audit/index.md
             retention-days: 30

Choose an answer

Tap an option to check your answer.

Pass your exam — without the endless answer hunt

Get every verified question and explanation for this exam in one place, and save hours of prep. 1,000+ certifications · 20+ languages · free to start.

Pass your exam faster No card needed
✓ Verified by ExamRoll editorial · Updated 15 July 2026
All-in-one access

One subscription. Every exam.

Every plan unlocks unlimited answer search, practice tests, AI explanations, and the full resource library — in 20+ languages.

Monthly
24.87
Just €0.83/day
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

Best value
12 months
179.87
Just €0.49/daySave 40%
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

✓ Free plan included · ✓ Cancel anytime · ✓ All plans unlock the full product