Add CI/CD actions #5
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: CI Shell Script | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
PYTHON_VERSION: '3.10' | |
jobs: | |
test-shell-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@v3 | |
- name: Clean up space for action | |
run: rm -rf /opt/hostedtoolcache | |
- name: Setup Python ${{ env.PYTHON_VERSION }} Environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: 'Setup FFmpeg' | |
uses: FedericoCarboni/setup-ffmpeg@v3 | |
id: setup-ffmpeg | |
with: | |
ffmpeg-version: release | |
architecture: 'arm64' | |
linking-type: static | |
- name: 'Execute Install.sh' | |
run: | | |
chmod +x ./Install.sh | |
./Install.sh | |
- name: 'Execute start-webui.sh' | |
run: | | |
chmod +x ./start-webui.sh | |
timeout 60s ./start-webui.sh || true | |