From 75a577b73cc2bc2ef97aadf75140ce388664912d Mon Sep 17 00:00:00 2001 From: shimataro Date: Sat, 23 Nov 2019 12:28:58 +0900 Subject: [PATCH] * matrix.platform -> matrix.os --- .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