Skip to content

Enhance Kubernetes Readiness with gRPC Health Checks & Update Kind Cluster Setup #44

Enhance Kubernetes Readiness with gRPC Health Checks & Update Kind Cluster Setup

Enhance Kubernetes Readiness with gRPC Health Checks & Update Kind Cluster Setup #44

Workflow file for this run

name: Run tests for jac-splice-orc
on:
pull_request:
paths:
- "jac-splice-orc/**"
push:
branches:
- main
paths:
- "jac-splice-orc/**"
jobs:
test-jaclang:
runs-on: ubuntu-latest
defaults:
run:
working-directory: jac-splice-orc
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install grpcio-tools pytest httpx
- name: Set environment for testing
run: |
echo "TEST_ENV=true" >> $GITHUB_ENV
- name: Run tests
run: pytest -x