mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 20:34:32 +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:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{ inputs.name }}
|
name: ${{ inputs.name }}
|
||||||
runs-on: ${{ inputs.os }}
|
runs-on:
|
||||||
|
- ${{ inputs.os }}
|
||||||
timeout-minutes: ${{ inputs.timeout }}
|
timeout-minutes: ${{ inputs.timeout }}
|
||||||
steps:
|
steps:
|
||||||
- name: Free disk space
|
- name: Free disk space
|
||||||
|
|
3
.github/workflows/check.yml
vendored
3
.github/workflows/check.yml
vendored
|
@ -37,8 +37,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
|
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
|
||||||
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.name }} (${{ matrix.system }})
|
name: ${{ matrix.name }} (${{ matrix.system }})
|
||||||
system: ${{ matrix.system }}
|
system: ${{ matrix.system }}
|
||||||
os: ${{ matrix.os }}
|
os: ${{ join( matrix.os, ' ' ) }} # FIXME: os is an array!
|
||||||
attr: ${{ matrix.attr }}
|
attr: ${{ matrix.attr }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue