Skip to content

Commit

Permalink
test pr
Browse files Browse the repository at this point in the history
  • Loading branch information
fmenezes committed Feb 1, 2024
1 parent cefd513 commit 40a5476
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Atlas Service Example
on: push

jobs:
runner-job:
runs-on: ubuntu-latest

services:
atlas:
image: "mongodb/apix_test:atlasdocker"
ports:
- 27017:27017

steps:
- name: test
run: |
wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.6.1.deb
sudo apt install ./mongodb-database-tools-*-100.6.1.deb
mongosh "mongodb://localhost:27017?directConnection=true" --eval 'db.adminCommand("ping")'

0 comments on commit 40a5476

Please sign in to comment.