Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 22, 2023
1 parent d03338b commit b60623b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
languages:
description: "Language to build"
required: true
type: array
type: sequence

runs:
using: "composite"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
${{ runner.os }}-build-${{ github.sha }}
${{ runner.os }}-build-
- name: Build ${{ matrix.languages }} on ${{ matrix.os }}
- name: Build ${{ join(matrix.languages, ',') }} on ${{ matrix.os }}
uses: ./.github/actions/build
with:
languages: ${{ matrix.languages }}

- name: Test ${{ matrix.languages }} on ${{ matrix.os }}
- name: Test ${{ join(matrix.languages, ',') }} on ${{ matrix.os }}
uses: ./.github/actions/test
with:
languages: ${{ matrix.languages }}

0 comments on commit b60623b

Please sign in to comment.