This repository was archived by the owner on May 28, 2026. It is now read-only.
[Dh-561] Add R package SentimentAnalysis to datahub image
#65
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
| name: Build and test container image | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CONTRIBUTING.md' | |
| - 'LICENSE' | |
| - '.github/**' | |
| - 'images/**' | |
| jobs: | |
| test-build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| env: | |
| DOCKER_CONFIG: $HOME/.docker | |
| steps: | |
| - name: Checkout files in repo | |
| uses: actions/checkout@v4 | |
| - name: Cleanup disk space | |
| run: | | |
| sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc | |
| df -h | |
| - name: Build and test the image if any image file(s) changed | |
| uses: jupyterhub/repo2docker-action@master | |
| with: | |
| FORCE_REPO2DOCKER_VERSION: jupyter-repo2docker==2024.07.0 | |
| REPO_DIR: /srv/repo | |
| NO_PUSH: true | |
| # Lets us monitor disks getting full as images get bigger over time | |
| - name: Show how much disk space is left | |
| run: df -h |