From d3e37cfa557e7dea1e397462ce89121bc065bbc9 Mon Sep 17 00:00:00 2001 From: Sayan <17377258+ohsayan@users.noreply.github.com> Date: Wed, 14 Oct 2020 08:10:15 +0530 Subject: [PATCH] Fix CI script --- .github/workflows/test-push.yml | 10 +++++----- README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-push.yml b/.github/workflows/test-push.yml index 870067d7..a795e7ee 100644 --- a/.github/workflows/test-push.yml +++ b/.github/workflows/test-push.yml @@ -42,7 +42,7 @@ jobs: restore-keys: | ${{ matrix.build }}-cargo-registry- # HACK(@ohsayan): The next line skips caching until it is fixed - if: runner.os != 'macOS' && !env.IS_MD_FILE + if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}} - name: Cache Cargo index uses: actions/cache@v1 @@ -52,7 +52,7 @@ jobs: restore-keys: | ${{ matrix.build }}-cargo-index- # HACK(@ohsayan): The next line skips caching until it is fixed - if: runner.os != 'macOS' && !env.IS_MD_FILE + if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}} - name: Cache Cargo build uses: actions/cache@v1 @@ -62,16 +62,16 @@ jobs: restore-keys: | ${{ matrix.build }}-target- # HACK(@ohsayan): The next line skips caching until it is fixed - if: runner.os != 'macOS' && !env.IS_MD_FILE + if: (runner.os != 'macOS') && !${{env.IS_MD_FILE}} - name: Install Rust run: | rustup update ${{ matrix.rust }} --no-self-update rustup default ${{ matrix.rust }} - if: "!env.IS_MD_FILE" + if: "!${{env.IS_MD_FILE}}" - name: Run Tests run: cargo test --verbose -- --test-threads=1 env: RUST_BACKTRACE: 1 - if: "!env.IS_MD_FILE" + if: "!${{env.IS_MD_FILE}}" diff --git a/README.md b/README.md index 664fbcd3..bcbec003 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ And [many more](https://terrabasedb.github.io/docs/List-Of-Actions) ## Clients 🔌 -We're officially working on a [Python Driver](https://github.com/terrabasedb/python-driver) and we plan to support more languages along the way 🎉! You're free to write your own clients - all you need to do is implement the simple and performant [Terrapipe protocol spec](https://terrabasedb.github.io/docs/Protocols/terrapipe/). +Until we release an official driver, you'll have to write your own clients — all you need to do is implement the simple and performant [Terrapipe protocol spec](https://terrabasedb.github.io/docs/Protocols/terrapipe/). ## Community 👐