We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e030d commit bf1d871Copy full SHA for bf1d871
.github/workflows/sqaaas.yaml
@@ -0,0 +1,25 @@
1
+name: SQAaaS IM
2
+
3
+on:
4
+ push:
5
+ branches: ["sqa"]
6
+ tags:
7
+ - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
8
+jobs:
9
10
+ sqaaas_job:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Add tox unit test step definition for a SQAaaS assessment
14
+ uses: eosc-synergy/sqaaas-step-action@v1
15
+ id: tox_unit_test
16
+ with:
17
+ name: tox_unit_test
18
+ container: "ghcr.io/grycap/awm:test"
19
+ tool: commands
20
+ commands: pip install tox && tox -e py3
21
22
+ - name: SQAaaS assessment step
23
+ uses: eosc-synergy/sqaaas-assessment-action@v2
24
25
+ qc_uni_steps: tox_unit_test
0 commit comments