Skip to content

Commit

Permalink
Update ci.yml (#29)
Browse files Browse the repository at this point in the history
garch -> goarch

Closes #28
  • Loading branch information
ckaznocha authored Aug 31, 2021
1 parent 1f40de0 commit 2a2ddd7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ jobs:
strategy:
matrix:
goos: [darwin, freebsd, linux, windows]
garch: ["386", amd64, arm, arm64]
goarch: ["386", amd64, arm, arm64]
exclude:
- goos: windows
garch: arm64
goarch: arm64
- goos: darwin
garch: arm
goarch: arm
- goos: darwin
goarch: "386"
env:
GOOS: ${{ matrix.goos }}
GARCH: ${{ matrix.garch }}
GOARCH: ${{ matrix.goarch }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand All @@ -23,7 +25,7 @@ jobs:
- run: go build -v .
- uses: actions/upload-artifact@v2
with:
name: protoc-gen-lint_${{ matrix.goos }}_${{ matrix.garch }}
name: protoc-gen-lint_${{ matrix.goos }}_${{ matrix.goarch }}
path: protoc-gen-lint*
lint:
needs: build
Expand Down

0 comments on commit 2a2ddd7

Please sign in to comment.