Skip to content

Commit

Permalink
Github Action use subshell for compound run commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
elgeeko1 committed Sep 18, 2024
1 parent ceb97c0 commit d6b81e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ jobs:
- name: Build the Test Publisher
run: |
cd InfluxPublisher; bash run_build.sh; cd ..;
(cd InfluxPublisher && bash run_build.sh)
- name: Start Test Publisher environment
run: |
cd InfluxPublisher; docker compose up -d --build; cd ..
(cd InfluxPublisher && docker compose up -d --build)
- name: Install jq
run: |
sudo apt-get install -y jq
- name: Run E2E Tests
run: |
cd InfluxPublisher; cd tests; bash test_publisher_e2e.sh; cd ../..
(cd InfluxPublisher/tests && bash test_publisher_e2e.sh)
- name: Tear down Docker containers
run: |
Expand Down

0 comments on commit d6b81e4

Please sign in to comment.