feat(agent)!: add support for mTLS authentication in gRPC server (#54) #48
This file contains hidden or 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 | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout code (full history) | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Setup golang with caching | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache-dependency-path: "**/go.sum" | |
cache: true | |
# Run tests | |
- name: Run tests | |
run: make test |