test ezid-stg for urllib3 upgrade #30
Workflow file for this run
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
| name: Run EZID UI and functional tests in Docker | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - '.env' | |
| jobs: | |
| ezid-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Run EZID Tests | |
| env: | |
| APITEST_PASSWORD: ${{ secrets.APITEST_PASSWORD }} | |
| run: docker compose up --build --abort-on-container-exit | |
| - name: Stop and remove containers | |
| if: always() | |
| run: docker compose down --volumes --remove-orphans |