Skip to content

Update to latest base image #38

Update to latest base image

Update to latest base image #38

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@v3
id: filter
with:
filters: |
azure-functions-dotnet: ./**/azure-functions-dotnet/**
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: ubuntu-latest
continue-on-error: true
strategy:
matrix:
templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }}
steps:
- uses: actions/checkout@v5
- name: Smoke test for '${{ matrix.templates }}'
id: smoke_test
uses: ./.github/actions/smoke-test
with:
template: "${{ matrix.templates }}"