Skip to content

Commit

Permalink
Install mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
Knerio authored Dec 2, 2024
1 parent 6e86990 commit 5352e47
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0

- name: Install MongoDB Shell (mongosh)
run: |
wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
sudo apt-get update
sudo apt-get install -y mongodb-mongosh
- name: Wait for MongoDB to Start
run: |
for i in {1..10}; do
Expand Down

0 comments on commit 5352e47

Please sign in to comment.