We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e3d941 commit 0cb61c3Copy full SHA for 0cb61c3
.github/workflows/integration-test.yml
@@ -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
35
+ make integration-test
0 commit comments