Skip to content

Commit

Permalink
Add workflow for running unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
komalsukhani committed Dec 17, 2024
1 parent 8c7f43f commit 72703c5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Unit Tests for Charts

on:
pull_request: {}
push:
branches:
- master

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up unit tests
run: $ helm plugin install https://github.com/helm-unittest/helm-unittest.git

- name: Run unit tests for tyk-stack
run: helm unittest ./tyk-stack

0 comments on commit 72703c5

Please sign in to comment.