Support direct signaling for advancing advertiser cleanroom state #48
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: optable-pair-cli CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
GOPATH: ${{ github.workspace }} | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: '${{ env.GOPATH }}/go.mod' | |
- name: Install dependencies | |
run: go get ./... | |
- name: Build | |
run: make build |