From 14197b5b239078c71427148f52260fd65f13bf02 Mon Sep 17 00:00:00 2001 From: shimataro Date: Sat, 23 Nov 2019 12:32:01 +0900 Subject: [PATCH] * matrix.platform -> matrix.os (#32) --- .github/workflows/build.yml | 6 +++--- .github/workflows/verify.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05f843a..562b7f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,11 +10,11 @@ on: name: Build jobs: build: - name: Build on ${{ matrix.platform }} / Node.js v${{ matrix.nodejs }} - runs-on: ${{ matrix.platform }} + name: Build on ${{ matrix.os }} / Node.js v${{ matrix.nodejs }} + runs-on: ${{ matrix.os }} strategy: matrix: - platform: + os: - Windows-latest - macOS-latest - Ubuntu-latest diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 0a92b50..1856c4f 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -4,11 +4,11 @@ on: push name: Connection test jobs: ssh: - name: Connect to github.com on ${{ matrix.platform }} - runs-on: ${{ matrix.platform }} + name: Connect to github.com on ${{ matrix.os }} + runs-on: ${{ matrix.os }} strategy: matrix: - platform: + os: - Windows-latest - macOS-latest - Ubuntu-latest