more detailed error #43
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 10 | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
services: | |
unicore: | |
image: ghcr.io/unicore-eu/unicore-testing-all:10.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 |