Skip to content

fix: Set heartbeatPeriod to 0 for chronos, griffon, and merlin #11

fix: Set heartbeatPeriod to 0 for chronos, griffon, and merlin

fix: Set heartbeatPeriod to 0 for chronos, griffon, and merlin #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Lint
run: make lint
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y conntrack
make install-python-deps
- name: Install Minikube
run: |
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
- name: Start Minikube
run: make minikube-start
- name: Install Helm
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
- name: Deploy NFS Helm charts
run: make deploy-nfs-chart
- name: Deploy Exivity Helm charts
run: make deploy-exivity-chart
- name: Run Tests
run: make test