name: Sample Validation Setup description: Sets up the environment for sample validation (checkout, Node.js, Copilot CLI, Azure login, Python) inputs: azure-client-id: description: Azure Client ID for OIDC login required: true azure-tenant-id: description: Azure Tenant ID for OIDC login required: true azure-subscription-id: description: Azure Subscription ID for OIDC login required: true python-version: description: The Python version to set up required: false default: "3.12" os: description: The operating system to set up required: false default: "Linux" runs: using: "composite" steps: - name: Set up Node.js environment uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 with: node-version: 22 - name: Install Copilot CLI shell: bash run: npm install -g @github/copilot - name: Test Copilot CLI shell: bash run: copilot --version && copilot -p "What can you do in one sentence?" - name: Azure CLI Login uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2 with: client-id: ${{ inputs.azure-client-id }} tenant-id: ${{ inputs.azure-tenant-id }} subscription-id: ${{ inputs.azure-subscription-id }} - name: Set up python and install the project uses: ./.github/actions/python-setup with: python-version: ${{ inputs.python-version }} os: ${{ inputs.os }}