Add collector query runner #1728
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: CI | |
# N.B.: release.yml should be updated to match as necessary | |
permissions: {} | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
# Use new enough OS that has CGroupsv2 enabled (required by the integration tests) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
id: go | |
- name: Set up protoc | |
uses: pganalyze/setup-protoc@v3 | |
with: | |
version: 28.2 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Lint | |
run: | | |
test $(go fmt ./... | wc -l) -eq 0 | |
- name: Run tests | |
run: | | |
make build OUTFILE=pganalyze-collector-linux-amd64 | |
make test | |
DOCKER_BUILDKIT=1 make integration_test | |
shellcheck contrib/install.sh |