Skip to content

Commit 0cb61c3

Browse files
committed
.
1 parent 1e3d941 commit 0cb61c3

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
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 test
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.2.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 wheel
32+
pip install .
33+
- name: Run tests
34+
run: |
35+
make integration-test

0 commit comments

Comments
 (0)