Add platforms for Gigamon and CloudGenix to the Kentik profile (#832) #775
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: Test on Push | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Profiles | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Get ktrans | |
uses: actions/checkout@v2 | |
with: | |
repository: kentik/ktranslate | |
path: ./ktranslate | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21.1' | |
- name: Install dependencies | |
run: sudo apt-get install make libpcap-dev | |
- name: Run build | |
run: | | |
cd ktranslate && make | |
- name: Run verify | |
run: | | |
./ktranslate/bin/ktranslate --snmp_validate --snmp ./test/snmp.yaml |