Skip to content

feat: Added cvat helm #91

feat: Added cvat helm

feat: Added cvat helm #91

Workflow file for this run

name: Run tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
uses: azure/[email protected]
with:
version: v3.11.0
- name: Install helm-unittest
run: |
helm plugin install https://github.com/helm-unittest/helm-unittest.git
- name: Run tests
run: |
helm unittest charts/* -o test-report.xml -t junit
- name: Test report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: test report
path: test-report.xml
reporter: java-junit