Stop early, verbose output, try to figure out the [E]rror #3
Workflow file for this run
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
# https://squidfunk.github.io/mkdocs-material/publishing-your-site/?h=#with-github-actions | |
name: Deploy Docs | |
on: | |
push: | |
branches: | |
- main | |
- test/ci | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: docker compose up -d | |
- run: docker exec python-api python -xv -m pytest -m "php" |