Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Aug 21, 2022
1 parent ca9fbbe commit 3f8d6f4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/usage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ on:

jobs:
run:
name: Run Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
id: list-repo-langs
- run: echo ${{ steps.list-repo-langs.outputs.languages }}
- run: echo ${{ toJSON(steps.list-repo-langs.outputs.languages) }}
- run: echo ${{ fromJSON(steps.list-repo-langs.outputs.languages) }}

print:
needs: run
runs-on: ubuntu-latest
strategy:
matrix:
language: ${{ fromJSON(needs.run.outputs.languages) }}
steps:
- run: echo ${{ matrix.language }}

0 comments on commit 3f8d6f4

Please sign in to comment.