Enhance store/kv module with caching, TTL support, and batch operations #2592
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cli-test | |
on: | |
push: | |
branches: | |
- "!release" | |
- "!alpha" | |
- "!beta" | |
- "!rc" | |
- "main" | |
workflow_call: | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install CLI | |
run: | | |
curl -sSL https://tigris.dev/cli-linux | sudo tar -xz -C . | |
- name: Start Tigris server | |
run: | | |
make run | |
TIGRIS_URL=localhost:8081 ./tigris ping --timeout 20s | |
- name: Run CLI tests | |
run: TIGRIS_TEST_PORT=8081 TIGRIS_CLI_TEST_FAST=1 noup=1 /bin/bash test/v1/cli/main.sh | |
- name: Dump integration tests coverage | |
run: sudo make dump_integration_coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage1.out |