summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2025-08-30 23:44:07 +0200
committerGitHub <noreply@github.com>2025-08-30 23:44:07 +0200
commit5a79a4edce0f39541d2e9b363dcbe0cc79c32a1e (patch)
treef0bb15f28881a000f17a8f6d1a74d72e93c6b84b /.github
parent5c31e3b411ba8dfec9ecdfacca494accf7f59119 (diff)
Feat/refactoring-module-menu (#22733)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dashboard-ci.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/dashboard-ci.yml b/.github/workflows/dashboard-ci.yml
index 25843a6906..fbdd881246 100644
--- a/.github/workflows/dashboard-ci.yml
+++ b/.github/workflows/dashboard-ci.yml
@@ -42,7 +42,12 @@ jobs:
- name: Install requirements
run: |
- sudo apt install -y bats
+ sudo apt-get update
+ # Install bats-core >= 1.5.0 to support bats_require_minimum_version
+ sudo apt-get install -y git curl
+ git clone --depth 1 https://github.com/bats-core/bats-core.git /tmp/bats-core
+ sudo /tmp/bats-core/install.sh /usr/local
+ bats --version
./acore.sh install-deps
- name: Run bash script tests for ${{ matrix.test-module }}
@@ -50,7 +55,7 @@ jobs:
TERM: xterm-256color
run: |
cd apps/test-framework
- ./run-tests.sh --tap
+ ./run-tests.sh --tap --all
build-and-test:
name: Build and Integration Test