Skip to content

Commit

Permalink
TESTs worfklow
Browse files Browse the repository at this point in the history
Signed-off-by: zenobit <[email protected]>
  • Loading branch information
zen0bit committed Jan 17, 2024
1 parent faf940b commit 8f8eb3e
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 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"

0 comments on commit 8f8eb3e

Please sign in to comment.