mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 12:24:28 +02:00
ci: FIX passing os
as an array
This commit is contained in:
parent
9863e247a5
commit
ce432ab608
2 changed files with 4 additions and 2 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -23,7 +23,8 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: ${{ inputs.name }}
|
||||
runs-on: ${{ inputs.os }}
|
||||
runs-on:
|
||||
- ${{ inputs.os }}
|
||||
timeout-minutes: ${{ inputs.timeout }}
|
||||
steps:
|
||||
- name: Free disk space
|
||||
|
|
3
.github/workflows/check.yml
vendored
3
.github/workflows/check.yml
vendored
|
@ -37,8 +37,9 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
|
||||
secrets: inherit
|
||||
with:
|
||||
name: ${{ matrix.name }} (${{ matrix.system }})
|
||||
system: ${{ matrix.system }}
|
||||
os: ${{ matrix.os }}
|
||||
os: ${{ join( matrix.os, ' ' ) }} # FIXME: os is an array!
|
||||
attr: ${{ matrix.attr }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue