Merge pull request #226 from Mellanox/dependabot/go_modules/github.co… #512
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: "Build" | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: golangci-lint | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: lint | |
| run: make lint | |
| test: | |
| name: test | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: install hwdata -yq | |
| run: sudo apt-get install hwdata -yq | |
| - name: test | |
| run: make test-coverage | |
| build: | |
| name: build | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: build | |
| run: make build |