This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quality_Assessment_&_Awarding_v2 | |
on: | |
push: | |
branches: | |
- sqa | |
pull_request: | |
branches: | |
- sqa | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step definition for validating the workflow | |
uses: eosc-synergy/sqaaas-step-action@v1 | |
with: | |
name: unittests_pytest | |
tool: commands | |
commands: | | |
python3 -m pytest -v | |
docker stop web | |
docker stop db | |
docker rm web | |
docker rm db | |
docker network rm yprov_net | |
docker volume rm neo4j_data | |
docker volume rm neo4j_logs | |
docker volume rm yprov_data | |
container: hpci/yprov-sqa:1.1 | |
- name: SQAaaS assessment with unit testing (QC.Uni) step | |
uses: eosc-synergy/sqaaas-assessment-action@v2 | |
with: | |
qc_uni_steps: unittests_pytest | |