kulala-github-action
June 18, 2026 ยท View on GitHub
kulala-github-action
Other tools ๐ง from the Kulala ๐ผ family ๐
Kulala for Neovim โข Kulala CLI โข Kulala Formatter (and converter) โข Kulala Desktop โข Kulala for Visual Studio Code โข Kulala Core
Usage
Kulala provides a Github Action to run HTTP files as part of your CI/CD pipeline.
Example:
---
name: main
on:
pull_request: ~
jobs:
build:
name: Run HTTP tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Setup Kulala CI
uses: mistweaverco/kulala-github-action@v3
- name: Run Kulala CI
run: |
# Run all .http files in the http-files/ directory
# and only output if there are test failures
kulala run http-files/ --tests --quiet