ansi_handler: support all string representable objects in LogRecord m… #445
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs unit tests against the specified python versions on both | |
# ubuntu and windows. Additionally, it performs CI against the codebase. | |
# | |
# Copyright (c) Microsoft Corporation. | |
# SPDX-License-Identifier: BSD-2-Clause-Patent | |
name: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
variables: | |
name: Variables | |
uses: ./.github/workflows/VariableProducer.yml | |
ci: | |
needs: variables | |
name: CI | |
uses: ./.github/workflows/CIRunner.yml | |
with: | |
python-version: ${{ fromJson(needs.variables.outputs.python-versions)[0] }} | |
node-version: ${{ fromJson(needs.variables.outputs.node-versions)[0] }} | |
package-src: edk2toollib | |
unit-test: | |
needs: [variables,ci] | |
name: Unit Test | |
uses: ./.github/workflows/UnitTestRunner.yml | |
with: | |
python-versions: ${{ needs.variables.outputs.python-versions }} |