Skip to content

TESTs worfklow

TESTs worfklow #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: test
# Controls when the action will run.
on:
# Build at 00:00 on every 12th day-of-month.
#schedule:
# - cron: "0 0 */12 * *"
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: '**' #'!master' # excludes master
paths-ignore: [ '**/README.md' ]
pull_request:
branches: '**' # matches every branch
paths-ignore: [ '**/README.md' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build-stable"
build-stable:
# The type of runner that the job will run on
runs-on: self-hosted
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Prerequisites
run: |
echo " Supported:"
./quickget -ls
echo " ISOs:"
./quickget -li
echo " ISOs availability test:"
./quickget -ti
echo " Finished"