Browse Source

Test go.yaml

pull/54/head
Gregory Rudolph 4 years ago committed by GitHub
parent
commit
9e209c62d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/go.yml

8
.github/workflows/go.yml

@ -1,10 +1,12 @@ @@ -1,10 +1,12 @@
name: Go
on: [push]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
name: Build
runs-on: ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.13
@ -30,5 +32,5 @@ jobs: @@ -30,5 +32,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v1.0.0
with:
name: kbtui-ubuntu-latest-buildbeta
name: kbtui-${{ matrix.platform }}-buildbeta
path: kbtui

Loading…
Cancel
Save