We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b52161f + 4f09801 commit 6a93263Copy full SHA for 6a93263
.github/workflows/ci.yml
@@ -397,9 +397,15 @@ jobs:
397
steps:
398
- name: Checkout
399
uses: actions/checkout@v3
400
- - name: Check
+ - name: Setup MongoDB
401
run: |
402
- sudo systemctl start mongod.service
+ sudo apt update
403
+ sudo apt install -y wget gnupg
404
+ wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
405
+ echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
406
407
+ sudo apt install -y mongodb-org
408
+ sudo systemctl start mongod
409
- name: Setup PHP
410
uses: shivammathur/setup-php@v2
411
with:
0 commit comments