diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b483f40..2715865 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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: - name: Upload Artifact uses: actions/upload-artifact@v1.0.0 with: - name: kbtui-ubuntu-latest-buildbeta + name: kbtui-${{ matrix.platform }}-buildbeta path: kbtui