Skip to content

Fix handling helm error exitcode #69

Fix handling helm error exitcode

Fix handling helm error exitcode #69

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go version
- name: Unittest
run: |
make test GO=go
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
integ-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go version
- name: Integration test
run: |
make integ-test GO=go
- name: Integration test kong
run: |
make integ-test-kong