Skip to content

Choose a tag to compare

@sam-butcher sam-butcher released this 23 Oct 15:41
· 1 commit to master since this release
332f090

GitHub Action for installing and running TypeDB

Arguments

Argument Description Default Value
typedb_version The version of TypeDB to use latest A TypeDB version (e.g. 3.5.0) or latest
typedb_grpc_port TypeDB's port for gRPC connections 1729 Valid port number
typedb_http_port TypeDB's port for HTTP connections 8000 Valid port number
typedb_args Additional arguments to pass to TypeDB TypeDB CLI arguments - see https://typedb.com/docs/maintenance-operation/typedb-configuration

Example

name: TypeDB CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
    - name: Git checkout
      uses: actions/checkout@v2
    - name: Run TypeDB
      uses: typedb/[email protected]
      with:
        typedb_version: 3.5.1