1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-31 12:37:45 +00:00

fix: escape quotes

This commit is contained in:
Kevin Amado 2022-02-07 22:19:10 -05:00
parent dd553a19c8
commit 281b6dbcd1
No known key found for this signature in database
GPG key ID: FFF341057F503148

View file

@ -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