Add the SDK probe (#1107) #4402
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: Checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
env: | |
GO_VERSION: "~1.23.1" | |
jobs: | |
check-links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: lycheeverse/[email protected] | |
with: | |
args: >- | |
-v -n "*.md" "**/*.md" | |
--exclude "http://localhost*" | |
fail: true | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
cache-dependency-path: "**/go.sum" | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Module cache | |
uses: actions/[email protected] | |
env: | |
cache-name: go-mod-cache | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }} | |
- name: Tools cache | |
uses: actions/[email protected] | |
env: | |
cache-name: go-tools-cache | |
with: | |
path: ~/.tools | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y clang llvm libbpf-dev | |
- name: Run linters | |
run: make license-header-check dependabot-check go-mod-tidy golangci-lint | |
- name: Check clean repository | |
run: make check-clean-work-tree | |
compatibility-test: | |
strategy: | |
matrix: | |
go-version: ["~1.23.1", "~1.22.7"] | |
os: [ubuntu-latest] | |
# GitHub Actions does not support arm* architectures on default | |
# runners. It is possible to accomplish this with a self-hosted runner | |
# if we want to add this in the future: | |
# https://docs.github.com/en/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow | |
arch: [amd64] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
check-latest: true | |
cache-dependency-path: "**/go.sum" | |
- name: Install build dependencies | |
run: sudo apt-get update && sudo apt-get install -y clang llvm | |
- name: Run tests | |
env: | |
GOARCH: ${{ matrix.arch }} | |
run: make test | |
verify-licenses: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
cache-dependency-path: "**/go.sum" | |
- name: Install build dependencies | |
run: sudo apt-get update && sudo apt-get install -y clang llvm libbpf-dev | |
- run: make verify-licenses |