chore(deps): update docker.io/library/nginx:alpine docker digest to 4870c12 #1013
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: Docker Compose Action | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Check format | |
| run: | | |
| uv run --frozen ruff format --diff | |
| - name: Linting | |
| run: | | |
| uv run --frozen ruff check | |
| - name: Linting | |
| run: | | |
| uv run --frozen ty check -- nextcloud_mcp_server | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| submodules: 'true' | |
| ###### Required to build OIDC App ###### | |
| - name: Set up php 8.4 | |
| uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2 | |
| with: | |
| php-version: 8.4 | |
| coverage: none | |
| - name: Install OIDC app composer dependencies | |
| run: | | |
| cd third_party/oidc | |
| composer install --no-dev | |
| ###### Required to build OIDC App ###### | |
| ###### Required to build Astrolabe App ###### | |
| - name: Set up Node.js for Astrolabe | |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
| with: | |
| node-version: '20' | |
| - name: Build Astrolabe app | |
| run: | | |
| cd third_party/astrolabe | |
| composer install --no-dev --optimize-autoloader | |
| npm ci | |
| npm run build | |
| ###### Required to build Astrolabe App ###### | |
| - name: Run docker compose | |
| uses: hoverkraft-tech/compose-action@05da55b2bb8a5a759d1c4732095044bd9018c050 # v2.4.3 | |
| with: | |
| compose-file: "./docker-compose.yml" | |
| #compose-flags: "--profile qdrant" | |
| up-flags: "--build" | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Install Playwright dependencies | |
| run: | | |
| uv run playwright install chromium --with-deps | |
| - name: Wait for service to be ready | |
| run: | | |
| echo "Waiting for service at http://localhost:8080/ocs/v2.php/apps/serverinfo/api/v1/info to return 401..." | |
| max_attempts=60 | |
| attempt=0 | |
| until curl -o /dev/null -s -w "%{http_code}\n" http://localhost:8080/ocs/v2.php/apps/serverinfo/api/v1/info | grep -q "401"; do | |
| attempt=$((attempt + 1)) | |
| if [ $attempt -ge $max_attempts ]; then | |
| echo "Service did not become ready in time." | |
| exit 1 | |
| fi | |
| echo "Attempt $attempt/$max_attempts: Service not ready, sleeping for 5 seconds..." | |
| sleep 5 | |
| done | |
| echo "Service is ready (returned 401)." | |
| # Add subsequent steps here, e.g., running tests | |
| - name: Run tests | |
| env: | |
| NEXTCLOUD_HOST: "http://localhost:8080" | |
| NEXTCLOUD_USERNAME: "admin" | |
| NEXTCLOUD_PASSWORD: "admin" | |
| run: | | |
| uv run pytest -v --log-cli-level=WARN -m unit -m smoke |