From d801352a0b3b8f37c842de8a9fff53db4dda3a46 Mon Sep 17 00:00:00 2001 From: Keijo Raamat Date: Thu, 30 Sep 2021 12:19:36 +0300 Subject: [PATCH] synatax correction --- .github/workflows/run-automatest-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-automatest-tests.yml b/.github/workflows/run-automatest-tests.yml index 1ff2bad..4873f9a 100644 --- a/.github/workflows/run-automatest-tests.yml +++ b/.github/workflows/run-automatest-tests.yml @@ -15,10 +15,10 @@ jobs: run: docker run -d --name tester proxy-tester - name: Install rebar dependencies - run: docker exec -i tester 'rebar3 as test get-deps' + run: docker exec -i tester rebar3 as test get-deps - name: Integrated Ruby app setup - run: docker exec -i tester 'apps/epp_proxy/priv/test_backend_app && bundle install && bundle exec rackup' + run: docker exec -i tester apps/epp_proxy/priv/test_backend_app && bundle install && bundle exec rackup - name: Compile for tests - run: docker exec -i tester 'rebar3 as test compile' \ No newline at end of file + run: docker exec -i tester rebar3 as test compile \ No newline at end of file