Skip to content

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

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

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

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@ceb8a2b8f2d89434be7ff52d3de7ec3738c5cc9d # v4.0.3
id: filter
with:
filters: |
azure-functions-dotnet:
- ./**/azure-functions-dotnet/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
azure-functions-go:
- ./**/azure-functions-go/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
azure-functions-java:
- ./**/azure-functions-java/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
azure-functions-node:
- ./**/azure-functions-node/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
azure-functions-powershell:
- ./**/azure-functions-powershell/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
azure-functions-python:
- ./**/azure-functions-python/**
- .github/actions/smoke-test/**
- .github/workflows/prebuild.yml
- test/test-utils/**
- .github/workflows/test-pr.yml
test:
needs: [detect-changes]
runs-on: ${{ matrix.os }}
strategy:
matrix:
templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }}
os: [ubuntu-24.04, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Smoke test for '${{ matrix.templates }}'
id: smoke_test
uses: ./.github/actions/smoke-test
with:
template: "${{ matrix.templates }}"