Browse Source

Use 'os' instead of the deprecated 'platform' in build matrix (#347)

pull/350/head
Christian Muehlhaeuser 5 years ago committed by GitHub
parent
commit
cdcead1143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/buildmaster.yaml

4
.github/workflows/buildmaster.yaml

@ -12,8 +12,8 @@ jobs: @@ -12,8 +12,8 @@ jobs:
strategy:
matrix:
go-version: [~1.13, ^1]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install go

Loading…
Cancel
Save