Skip to content

Commit

Permalink
chore: trigger pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Feb 6, 2025
1 parent dd753f8 commit b222735
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/temp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Test 🧪

on:
push:
branches:
- test-shell-issues
workflow_dispatch:

jobs:
test:
name: Test 🔍
runs-on: ubuntu-latest

steps:
- name: Checkout Repo 🛎
uses: actions/checkout@v4

- name: Test
run: |
echo "test1"
# Bash script run
if ! command -v git > /dev/null 2>&1
then
echo "git could not be found"
exit 0
fi
if ! command -v grep > /dev/null 2>&1
then
echo "grep could not be found"
exit 0
fi
if ! command -v sed > /dev/null 2>&1
then
echo "sed could not be found"
exit 0
fi
echo "test1"
shell: bash

0 comments on commit b222735

Please sign in to comment.