Skip to content

Implement telemetry send operation using telemetry plugin (#405) #66

Implement telemetry send operation using telemetry plugin (#405)

Implement telemetry send operation using telemetry plugin (#405) #66

Workflow file for this run

name: Main
on:
pull_request:
branches: [ main, release-*]
push:
branches: [ main, test*, release-*]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Config credentials
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
run: |
git config --global url."https://git:[email protected]".insteadOf "https://github.com"
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Run markdown link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
- name: go cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Cache linting
uses: actions/cache@v3
with:
path: ${{ runner.temp }}/lint_cache
key: ${{ runner.os }}-lint-cache-2
- name: Setup dependencies
run: |
make tools
echo "${PWD}/hack/tools/bin" >> $GITHUB_PATH
- name: Test
run: |
make all
- name: Run make verify
run: |
make verify