Skip to content

tests step by step

tests step by step #8

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: A test job for tr
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Test just output the message
uses: ./
with:
text: |
Hello DevOps
# - name: Test cowsay on the comment
# uses: ./
# with:
# message: 'Hello, World with random'
# cow: 'random'
# cowsay_on_comment: true
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Test set output pipeline
# id: cowsay_output_id
# uses: ./
# with:
# message: 'Hello, World'
# cow: 'gopher'
# cowsay_to_output: 'cowsay'
# - name: Print output
# run: |
# echo "${{ steps.cowsay_output_id.outputs.cowsay }}"