Skip to content

Bump dorny/paths-filter from 4.0.1 to 4.0.2 in the dependencies group across 1 directory #75

Bump dorny/paths-filter from 4.0.1 to 4.0.2 in the dependencies group across 1 directory

Bump dorny/paths-filter from 4.0.1 to 4.0.2 in the dependencies group across 1 directory #75

Workflow file for this run

name: "CI - Test Templates"
on:
pull_request:
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
templates: ${{ steps.filter.outputs.changes }}
steps:
- uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2
id: filter
with:
filters: |
azure-functions-dotnet: ./**/azure-functions-dotnet/**
azure-functions-go: ./**/azure-functions-go/**
azure-functions-java: ./**/azure-functions-java/**
azure-functions-node: ./**/azure-functions-node/**
azure-functions-powershell: ./**/azure-functions-powershell/**
azure-functions-python: ./**/azure-functions-python/**
test:
needs: [detect-changes]
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }}
os: [ubuntu-24.04, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Smoke test for '${{ matrix.templates }}'
id: smoke_test
uses: ./.github/actions/smoke-test
with:
template: "${{ matrix.templates }}"