Skip to content

Commit

Permalink
Create say_hello.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matsui528 authored Jun 12, 2024
1 parent 14296bb commit 09214fc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/say_hello.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Simply saying hello'
on: [push]

jobs:
  say-hello:
    runs-on: ubuntu-latest
    steps:
      - name: Check out
        uses: actions/checkout@v4

      - name: Run basic commands
        run: |
          pwd
          ls
          df

      - name: Say hello
        run: |
          echo 'Hello World!'

0 comments on commit 09214fc

Please sign in to comment.