Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Update README.md

Update README.md #136

Workflow file for this run

name: CI
on:
push:
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install expect
run: sudo apt-get install expect
- name: Install bats for testing
run: sudo npm install -g bats
- name: Run shellcheck
run: shellcheck ./terminusdb-container
- name: Run tests with bats
run: bats .ci/tests/basic.bats