Skip to content

Integrate with huh for better interface #90

Integrate with huh for better interface

Integrate with huh for better interface #90

Workflow file for this run

---
name: ci
on: [push, pull_request]
jobs:
ci_job:
name: test
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create kind cluster
uses: helm/kind-action@v1
with:
cluster_name: kvs-test
install_only: true
- name: Prepare env
run: make bootstrap
- name: Test
run: make test
- name: Generate coverage report
run: make test-cov
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}