SpeechRecognitionAgent #162
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: | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
install-n-lint: | |
name: Run tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Restore build caches | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }} | |
- name: Update | |
run: | | |
./scripts/install_submodules.sh | |
- name: Install Ubuntu dependencies | |
run: | | |
./scripts/install_problem_solver_deps.sh | |
- name: Build problem solver | |
run: | | |
./scripts/build_problem_solver.sh --tests | |
- name: Run cpp tests | |
run: | | |
./scripts/run_cpp_tests.sh | |
- name: Install deps for Python tests | |
run: | | |
./scripts/install_py_sc_server_deps.sh | |
- name: Run Python tests | |
run: | | |
./scripts/run_py_tests.sh | |
- name: Build knowledge base | |
run: | | |
./scripts/build_kb.sh |