From 92587ec1ff76b2eaf55d80dfeb6f7c6b3c19b816 Mon Sep 17 00:00:00 2001 From: Matt Gerst Date: Wed, 13 Jan 2021 18:27:10 -0600 Subject: [PATCH] Add mongo service to Github Actions (#896) --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a7e35ca..46e35bc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,13 @@ jobs: - '2.6' - '2.5' - '2.4' + + services: + mongodb: + image: mongo + ports: + - 27017:27017 + steps: - name: Checkout uses: actions/checkout@v2