Merge pull request #39 from BerndSchuller/dev #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs integration tests using | |
# the unicore-testing-all Docker container | |
name: Integration tests vs UNICORE 9 | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
services: | |
unicore: | |
image: ghcr.io/unicore-eu/unicore-testing-all:9.0.0 | |
ports: | |
- 8080:8080 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
pip install . | |
- name: Run tests | |
run: | | |
make integration-test |