File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11name : complete build
22on : [pull_request, workflow_call]
33jobs :
4- lintage-checks :
4+ Build Docker image :
55 runs-on : ubuntu-22.04
66 env :
77 SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -17,24 +17,24 @@ jobs:
1717 - name : Test formatting
1818 run : |
1919 set -euxo
20- docker-compose -f scripts/docker_lintage/docker-compose.yaml up --build format_test
20+ docker-compose -f scripts/docker_lintage/docker-compose.yaml run --build format_test
2121 - name : Complexity
2222 run : |
23- docker-compose -f scripts/docker_lintage/docker-compose.yaml up --build complexity
23+ docker-compose -f scripts/docker_lintage/docker-compose.yaml run --build complexity
2424 - name : Documentation
2525 run : |
26- docker-compose -f scripts/docker_lintage/docker-compose.yaml up --build documentation
26+ docker-compose -f scripts/docker_lintage/docker-compose.yaml run --build documentation
2727 - name : Test Coverage
2828 run : |
29- docker-compose -f scripts/docker_lintage/docker-compose.yaml up --build coverage
29+ docker-compose -f scripts/docker_lintage/docker-compose.yaml run --build coverage
3030 - uses : act10ns/slack@v2
3131 with :
3232 status : ${{job.status}}
3333 message : Shame on ${{ github.event.name.pull_request.user.login }}! Test coverage is not enough.
3434 if : failure()
3535 - name : Unit Test
3636 run : |
37- docker-compose -f scripts/docker_lintage/docker-compose.yaml up --build unittest
37+ docker-compose -f scripts/docker_lintage/docker-compose.yaml run --build unittest
3838 - uses : act10ns/slack@v2
3939 with :
4040 status : ${{job.status}}
You can’t perform that action at this time.
0 commit comments