updated yt-dlp #126
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: Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
smoke_test_docker_containers: | |
name: Smoke test Docker containers | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Build and start the containers | |
- name: Build the docker-compose stack | |
run: docker-compose up -d | |
env: | |
FILES_PATH: . | |
# Check the containers | |
- name: Check running containers | |
run: docker ps -a | |
# Shutdown the containers | |
- name: shutdown the containers | |
run: docker-compose down --remove-orphans |