From 281b6dbcd1c667f3810aa01acc71cfeebc18387d Mon Sep 17 00:00:00 2001 From: Kevin Amado Date: Mon, 7 Feb 2022 22:19:10 -0500 Subject: [PATCH] fix: escape quotes --- .github/workflows/pr.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 27f4646..4606ab1 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -18,16 +18,16 @@ jobs: uses: docker://nixos/nix with: args: > - bash -c ' - nix - --extra-experimental-features flakes - --extra-experimental-features nix-command - profile install direnv; + bash -ex -c " + nix \ + --extra-experimental-features flakes \ + --extra-experimental-features nix-command \ + profile install direnv - direnv allow; + direnv allow - cargo tarpaulin; - ' + cargo tarpaulin + " - name: Build and Test uses: docker://nixos/nix