Browse Source

Test go.yaml

pull/54/head
Gregory Rudolph 6 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 @@
name: Go name: Go
on: [push] on: [push]
jobs: jobs:
build: build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
name: Build name: Build
runs-on: ubuntu-latest runs-on: ${{ matrix.platform }}
steps: steps:
- name: Set up Go 1.13 - name: Set up Go 1.13
@ -30,5 +32,5 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v1.0.0 uses: actions/upload-artifact@v1.0.0
with: with:
name: kbtui-ubuntu-latest-buildbeta name: kbtui-${{ matrix.platform }}-buildbeta
path: kbtui path: kbtui

Loading…
Cancel
Save