Skip to content

Meetup Agosto 2025 "Escalando tus aplicaciones Python con Ray" #9

Meetup Agosto 2025 "Escalando tus aplicaciones Python con Ray"

Meetup Agosto 2025 "Escalando tus aplicaciones Python con Ray" #9

Workflow file for this run

name: CI/CD Pipeline

Check failure on line 1 in .github/workflows/ci-cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-cd.yml

Invalid workflow file

(Line: 18, Col: 11): Unexpected value '', (Line: 29, Col: 11): Unexpected value ''
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build-and-validate:
name: Build and Validate
runs-on: ubuntu-latest
steps:
# ... todos los pasos de validación y build ...
deploy:
name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
needs: build-and-validate
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
# ... pasos de deploy ...