In order to protect users of prebid-server that don't use CGO, add build flag #6154
Workflow file for this run
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: Validate Merge | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
validate-merge: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.3 | |
- name: Checkout Merged Branch | |
uses: actions/checkout@v4 | |
- name: Validate | |
run: | | |
./validate.sh --nofmt --cov --race 10 | |
env: | |
GO111MODULE: "on" |