Merge pull request #4763 from kubernetes-sigs/dependabot/go_modules/d… #612
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 all images | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
checks: write # to create a new check based on the results (shogo82148/actions-goveralls) | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
id: go | |
- name: Install CI | |
run: | | |
go get -v -t -d ./... | |
- name: Test | |
run: make build.image/multiarch |