File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments