Skip to content

Commit ec93620

Browse files
committed
update UNICORE versions for integration tests
1 parent faaf6da commit ec93620

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This workflow runs integration tests using
2+
# the unicore-testing-all Docker container
3+
4+
name: Integration tests vs UNICORE 10
5+
6+
on:
7+
workflow_dispatch:
8+
push:
9+
pull_request:
10+
11+
jobs:
12+
integration-test:
13+
14+
runs-on: ubuntu-latest
15+
16+
services:
17+
unicore:
18+
image: ghcr.io/unicore-eu/unicore-testing-all:10.4.0
19+
ports:
20+
- 8080:8080
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Set up Python
25+
uses: actions/setup-python@v4
26+
with:
27+
python-version: '3.x'
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip
31+
pip install 'setuptools<81' wheel
32+
pip install .
33+
- name: Run tests
34+
run: |
35+
make integration-test

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
services:
1717
unicore:
18-
image: ghcr.io/unicore-eu/unicore-testing-all:10.2.0
18+
image: ghcr.io/unicore-eu/unicore-testing-all:11.0.0
1919
ports:
2020
- 8080:8080
2121

0 commit comments

Comments
 (0)