Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybibikov authored Aug 28, 2024
1 parent 7d0b97d commit f50a7e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ jobs:

- name: Set up Docker Compose
run: |
docker-compose -f docker-compose.yml -f docker-compose.override.yml config
docker-compose pull
docker-compose build
docker compose -f docker-compose.yml -f docker-compose.override.yml config
docker compose pull
docker compose build
- name: Install ReportGenerator
run: dotnet tool install --global dotnet-reportgenerator-globaltool

- name: Run tests
run: docker-compose up --exit-code-from tests tests localstack
run: docker compose up --exit-code-from tests tests localstack

- name: Run tests
run: docker-compose up --exit-code-from unittests unittests
run: docker compose up --exit-code-from unittests unittests

- name: Upload TRX test results
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Clean up
run: docker-compose down
run: docker compose down

- name: Parse Trx files
uses: NasAmin/trx-parser@v0.5.0
Expand Down

0 comments on commit f50a7e4

Please sign in to comment.