Skip to content

Commit bda92c3

Browse files
authored
Merge pull request #31 from grycap/sqa
Sqa
2 parents b595efb + b82310e commit bda92c3

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

.github/workflows/sqaaas.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: SQAaaS AWM
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+
with:
25+
qc_uni_steps: tox_unit_test

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ http://localhost:8080/
4242

4343
## Running with Docker
4444

45-
To run the server on a Docker container, please execute the following from the root directory:
45+
To run the server on a Docker container, please execute the following from the
46+
root directory:
4647

4748
```bash
4849
# building the image
@@ -52,6 +53,6 @@ docker build -t awm .
5253
docker run -p 8080:8080 awm
5354

5455
# starting up a setting the IM_URL variable
55-
docker run -p 8080:8080 -e IM_URL=https://appsgrycap.i3m.upv.es/im-dev/ ghcr.io/grycap/awm
56+
docker run -p 8080:8080 -e IM_URL=https://im.egi.eu/im ghcr.io/grycap/awm
5657

5758
```

0 commit comments

Comments
 (0)