EPMRPP-109176 || MCP. Tools. Add tool, update defect types by item ids #194
Workflow file for this run
  
    
      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: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.2' # The Go version to download (if necessary) and use. | |
| - name: Install Task | |
| uses: arduino/setup-task@v2 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
| version: v2.1.6 | |
| # Optional: show only new issues if it's a pull request. The default value is `false`. | |
| only-new-issues: false | |
| # Run testing on the code | |
| - name: Run testing | |
| run: task test | |
| # Run build of the application | |
| - name: Run build | |
| run: task app:build | |