OTT-1564: [bug fix] avoid database calls in vast-unwrap module for hybrid+activation endpoint #629
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@v4 | |
with: | |
go-version: 1.20.5 | |
- name: Checkout Merged Branch | |
uses: actions/checkout@v3 | |
- 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 }} |