Skip to content

Commit

Permalink
ci: separate scenario testing into its own pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Jul 4, 2024
1 parent a60239f commit 67dc95a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
localstack-dind: ./**/localstack-dind/**
localstack-dood: ./**/localstack-dood/**
test:
smoke-test:
needs: [detect-changes]
runs-on: ubuntu-latest
continue-on-error: true
Expand All @@ -36,6 +36,16 @@ jobs:
with:
template: "${{ matrix.templates }}"

scenario-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@v3

- name: Scenario test(s) for '${{ matrix.templates }}'
id: scenario_test
uses: ./.github/actions/scenario-test
Expand Down

0 comments on commit 67dc95a

Please sign in to comment.