CI Run upon Git Push. #85
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: on Git Push | |
run-name: CI Run upon Git Push. | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
- next | |
- testing | |
- staging | |
- edge | |
- experimental | |
jobs: | |
develop_on: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
env: | |
TERM: xterm-256color | |
UPSCALER_TEST_MODE: "true" | |
steps: | |
- name: Checking out designated commit - GITHUB ACTIONS | |
id: git_check_out | |
uses: actions/checkout@v4 | |
- name: Initialize - GITHUB ACTIONS | |
id: git_initialize | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Github Action Automated Runner" | |
- name: Execute Upscaler's Help Mode - HELP | |
id: upscaler_help | |
run: | | |
./tests/00_test_help.sh.ps1 | |
- name: Execute Upscaler's Single Image Upscale | |
id: upscaler_image_unscale_single | |
run: | | |
./tests/01_test_upscale_image_single.sh.ps1 | |
- name: Execute Upscaler's Single Video Upscale | |
id: upscaler_video_unscale_single | |
run: | | |
./tests/02_test_upscale_video_single.sh.ps1 |