diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efb2526..ac8955f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,12 +32,6 @@ jobs: services: typesense: image: typesense/typesense:${{ matrix.typesense-version }} - # options: >- - # --health-cmd "curl http://localhost:8108/health" - # --health-start-period 10s - # --health-interval 10s - # --health-timeout 5s - # --health-retries 5 steps: - name: Checkout repo @@ -48,7 +42,7 @@ jobs: docker run -d \ -p 8108:8108 \ --name typesense \ - -v/tmp/typesense:/data \ + -v /tmp/typesense:/data \ typesense/typesense:${{ matrix.typesense-version}} \ --api-key=xyz \ --data-dir /data \