Skip to content

EPMRPP-109176 || MCP. Tools. Add tool, update defect types by item ids #196

EPMRPP-109176 || MCP. Tools. Add tool, update defect types by item ids

EPMRPP-109176 || MCP. Tools. Add tool, update defect types by item ids #196

Workflow file for this run

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