UOE-10484: Fix- Inject error tracker in Adm for AppLoinMax #855
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 | |
- main | |
- ci | |
jobs: | |
validate-merge: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.20.5 | |
- name: Checkout Merged Branch | |
uses: actions/checkout@v4 | |
- name: Validate | |
run: | | |
git config --global url."https://${USERNAME}:${TOKEN}@git.pubmatic.com".insteadOf "https://git.pubmatic.com" | |
./validate.sh --nofmt --cov --race 10 | |
env: | |
GO111MODULE: "on" | |
GOPRIVATE: "git.pubmatic.com/PubMatic/*" | |
TOKEN: ${{ secrets.PM_OPENWRAP_CICD_PASSWORD }} | |
USERNAME: ${{ secrets.PM_OPENWRAP_CICD_USERNAME }} |