deps(go): bump google.golang.org/grpc in the go_modules group (#755) #1962
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# only run on PRs targeting main | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
goarch: [ '386', 'amd64' ] | |
container: | |
image: ghcr.io/hairyhenderson/gomplate-ci-build | |
steps: | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Someone" | |
- uses: actions/checkout@v4 | |
- run: make test GOARCH=${{ matrix.goarch }} | |
fscli-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: [ linux-amd64, linux-arm-v7, linux-arm64, linux-ppc64le, darwin-amd64, darwin-arm64, windows-amd64.exe ] | |
container: | |
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build fscli | |
run: | | |
make bin/fscli_${{ matrix.platform }} | |
windows-build: | |
runs-on: windows-latest | |
env: | |
TMP: D:\a\tmp | |
steps: | |
- run: pwd | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Someone" | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- run: make test |