Skip to content

Added separate user to run and added random trigger connection manager #241

Added separate user to run and added random trigger connection manager

Added separate user to run and added random trigger connection manager #241

Workflow file for this run

name: Clojure CI
on:
push:
branches: [ "master-yb" ]
pull_request:
branches: [ "master-yb" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Precheck
run: cd yugabyte && lein run test 2>&1 | grep 'Must be one of'
- name: Check that project is compiled
run: echo "lein_run_test_output=$(cd yugabyte && lein run test 2>&1 | grep 'Must be one of')" >> $GITHUB_OUTPUT
id: lein_run_test_output
- uses: nick-fields/assert-action@v1
name: Check output for workload missing arg
with:
# we do expect to see workload arg missing error here
expected: "workload Must be one of"
actual: ${{ steps.lein_run_test_output.outputs.result }}
comparison: contains