difftreelog
Update unit-test_v2.yml
in: master
1 file changed
.github/workflows/unit-test_v2.ymldiffbeforeafterboth1# Re-Usable Workflow for lanching Unit tests1name: unit tests2name: unit tests233# Controls when the action will run.4# Controls when the action will run.5# Triger: only call from main workflow(re-usable workflows)4on:6on:5 # Triggers the workflow on push or pull request events but only for the master branch6 workflow_call:7 workflow_call:788# A workflow run is made up of one or more jobs that can run sequentially or in parallel9# A workflow run is made up of one or more jobs that can run sequentially or in parallel50 if: always() # run this step always51 if: always() # run this step always51 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" down52 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" down53 54 - name: Remove builder cache55 if: always() # run this step always56 run: |57 docker builder prune -f -a58 docker system prune -f59 docker image prune -f -a5260