Bump tj-actions/changed-files from 44.5.5 to 44.5.7 in the actions group #407
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
name: Docker Tests | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
docker: | |
name: Docker Dev Container | |
if: ${{ github.event_name == 'schedule' }} || contains( github.event.pull_request.title, '[docker]') | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build the image | |
run: | | |
bash ./docker/start.sh build | |
docker image ls 2>&1 | grep -ie "jupyterlab_dev" - | |
- name: Start the dev container | |
run: | | |
bash ./docker/start.sh dev-detach | |
- name: Wait for JupyterLab | |
run: npx [email protected] http-get://localhost:8888/lab -t 360000 |