Skip to content

Default

Default #8

Workflow file for this run

name: Default
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Build Tests
run: cd tests/unit && ./build-tests.sh
- name: Run Tests
run: |
cd tests/unit &&
./test-event && ./test-telemetry && ./test-rest-api