no longer test vs U9 #50
This file contains hidden or 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 test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| services: | |
| unicore: | |
| image: ghcr.io/unicore-eu/unicore-testing-all:11.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<81' wheel | |
| pip install . | |
| - name: Run tests | |
| run: | | |
| make integration-test |