This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
Update README.md #137
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: 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 |