diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fea8ba3e..43eedcc7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,10 @@ jobs: with: lein: "2.8.1" - uses: actions/checkout@v2 - + - name: Install Docker Compose + run: | + sudo apt-get update + sudo apt-get install -y docker-compose - name: Run Tests on Kafka Cluster run: ./bin/run_cluster_tests_in_ci.sh env: @@ -52,6 +55,10 @@ jobs: with: lein: "2.8.1" - uses: actions/checkout@v2 + - name: Install Docker Compose + run: | + sudo apt-get update + sudo apt-get install -y docker-compose - name: Calculate Coverage run: make coverage diff --git a/README.md b/README.md index 9b921e7b..6dff03af 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Refer to [concepts](doc/CONCEPTS.md) to understand the concepts referred to in t 1. Install Clojure: `brew install clojure` 2. Install Leiningen: `brew install leiningen` -3. Run Docker Compose: `docker-compose up`. This starts: +3. Run docker-compose: `docker-compose up`. This starts: - Kafka on localhost:9092 - ZooKeeper on localhost:2181 - RabbitMQ on localhost:5672