From ecdbc5084ba6714139fc1384d4e25b914fd31954 Mon Sep 17 00:00:00 2001 From: Charles Suggs Date: Sun, 12 Jan 2025 10:48:01 -0600 Subject: [PATCH] circleci command syntax --- .circleci/config.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 95c0298..20ea379 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,10 +23,11 @@ jobs: executor: test-container steps: - code-setup - - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - - run: . "$HOME/.cargo/env" - - run: cd vl-convert-rs - - run: cargo run --example conversion_sequence + - run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + . "$HOME/.cargo/env" + cd vl-convert-rs + cargo run --example conversion_sequence workflows: test-suite: