Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejas Mate authored Mar 2, 2024
1 parent bf42e32 commit 0058ac8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# .github/workflows/test_action.yaml
name: Test Action
on: [push]

jobs:
get-num-square:
runs-on: ubuntu-latest
name: Return's the number square
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch num squared
id: get_square
uses: ./ # Uses an action in the root directory
# or use a released Github Action
# uses: shipyard/github-action/[email protected]
with:
num: 11
- name: Print the square
run: echo "${{ steps.get_square.outputs.num_squared }}"

0 comments on commit 0058ac8

Please sign in to comment.