From f3d92134196c4d503d41bb559d43c9c677841439 Mon Sep 17 00:00:00 2001 From: Didier Lafforgue Date: Mon, 1 Apr 2024 20:09:24 +0200 Subject: [PATCH] install mongorestore for the CI --- .github/workflows/continuous_integration.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index d15e2715..cc959656 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -31,6 +31,11 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 + - name: Install MongoDB tools + run: | + wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.9.4.deb + sudo apt install ./mongodb-database-tools-ubuntu2204-x86_64-100.9.4.deb + - name: Setup Ruby uses: ruby/setup-ruby@v1 with: