Skip to content

EPMDEDP-16758: feat: Add krci pipelinerun start command #133

EPMDEDP-16758: feat: Add krci pipelinerun start command

EPMDEDP-16758: feat: Add krci pipelinerun start command #133

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
env:
GO_VERSION: "1.26.1"
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install development tools
run: make tools
- name: Run CI pipeline
run: make ci
- name: Generate coverage report
run: make test-coverage