From a656ff338c84374f3e3522c65cda32a734d4df82 Mon Sep 17 00:00:00 2001 From: Matt Gerst Date: Wed, 13 Jan 2021 17:35:47 -0600 Subject: [PATCH] Add mongo service to CI --- .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