Auto-scan all pages by default; remove --max-pages option; allow DOWN… #6
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: CI - Build and Verify Docker image | |
| on: | |
| push: | |
| branches: [main, master] | |
| jobs: | |
| build-and-verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Build Docker image (ci tag) | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: . | |
| push: false | |
| tags: tv-downloader:ci | |
| - name: Run verification inside container | |
| run: | | |
| docker run --rm tv-downloader:ci python scripts/verify_playwright.py |