Skip to content

Commit

Permalink
Fix broken test build
Browse files Browse the repository at this point in the history
  • Loading branch information
marwoodandrew committed Aug 6, 2024
1 parent fa2a2b8 commit 8f3d9f4
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ jobs:
server-py-36:
runs-on: ubuntu-20.04

services:
redis:
image: redis:alpine
ports:
- "6379:6379"

mongo:
image: mongo:3.6
ports:
- "27017:27017"

elastic:
image: docker.elastic.co/elasticsearch:2.4.6
ports:
- "9200:9200"
env:
discovery.type: single-node

defaults:
run:
working-directory: server

steps:
- uses: actions/checkout@v2

Expand All @@ -16,8 +38,6 @@ jobs:
with:
python-version: 3.6

- name: docker-compose
run: docker-compose -f .actions-docker-compose.yml up -d

- run: |
sudo apt-get update
Expand Down

0 comments on commit 8f3d9f4

Please sign in to comment.