Skip to content

build(deps): bump regex from 2024.4.16 to 2024.5.15 (#809) #1363

build(deps): bump regex from 2024.4.16 to 2024.5.15 (#809)

build(deps): bump regex from 2024.4.16 to 2024.5.15 (#809) #1363

Workflow file for this run

# 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: edk2toolext
unit-test:
needs: [variables,ci]
name: Unit Test
uses: ./.github/workflows/UnitTestRunner.yml
with:
python-versions: ${{ needs.variables.outputs.python-versions }}