Pin libsqlite=3.50.4 to workaround undefined symbol: sqlite3_total_changes64 error #87
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
| # This workflow runs repo2docker to check if this repository is a valid binder repo | |
| name: Validator | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| repo2docker: | |
| name: Run repo2docker | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python and install repo2docker | |
| uses: actions/setup-python@v6.1.0 | |
| with: | |
| python-version: "3.13" | |
| pip-install: jupyter-repo2docker | |
| - name: Run repo2docker | |
| run: jupyter-repo2docker --no-run --ref ${{ github.event.pull_request.head.sha }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} |