Skip to content

Commit

Permalink
remove "--rm" from compose commands run on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Jun 13, 2024
1 parent 9f42d23 commit 19f8cfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: test
run: docker compose -f actions-services.yml run --rm test ./run-tests.sh
run: docker compose -f actions-services.yml run test ./run-tests.sh
- name: check hub metadata for tests
run: docker compose -f actions-services.yml run --rm ssp-hub.local ./run-metadata-tests.sh
run: docker compose -f actions-services.yml run ssp-hub.local ./run-metadata-tests.sh
- name: check idp metadata for tests
run: docker compose -f actions-services.yml run --rm ssp-idp1.local ./run-metadata-tests.sh
run: docker compose -f actions-services.yml run ssp-idp1.local ./run-metadata-tests.sh
- name: check sp metadata for tests
run: docker compose -f actions-services.yml run --rm ssp-sp1.local ./run-metadata-tests.sh
run: docker compose -f actions-services.yml run ssp-sp1.local ./run-metadata-tests.sh

build-and-publish:
name: Build and Publish
Expand Down

0 comments on commit 19f8cfb

Please sign in to comment.