Space #697
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: Metrics-Agent | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.24' | |
| - uses: actions/checkout@v2 | |
| - name: Install tools | |
| run: | | |
| make install-tools | |
| GO111MODULE=on go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.2 | |
| - name: Lint | |
| run: make lint | |
| - name: Run Tests | |
| run: make test | |
| test_e2e: | |
| name: Test E2E AMD | |
| needs: build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.24' | |
| - uses: actions/checkout@v2 | |
| - name: run e2e AMD tests | |
| run: make test-e2e-all | |