Skip to content

Commit

Permalink
Use a matrix in testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Mercer committed Nov 25, 2022
1 parent 9de6c31 commit 4d4e250
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-report-failed-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
language: [javascript]
steps:
- uses: actions/checkout@v3
- uses: ./init
with:
languages: javascript
languages: ${{ matrix.language }}
- name: Fail
run: exit 1
- uses: ./analyze
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 4d4e250

Please sign in to comment.