Skip to content

Commit

Permalink
Add hello.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oribeyu committed Jun 22, 2024
1 parent 37f3c6b commit a93adf7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Hello # ワークフロー名
on: push # イベント(プッシュ時に起動)
jobs: # ジョブの定義
hello: # ジョブID
runs-on: ubuntu-latest # ランナー(Ubuntuで実行)
steps: # ステップの定義
- run: echo "Hello, world" # シェルコマンドの実行
- uses: actions/checkout@v4 # アクションの呼び出し.

0 comments on commit a93adf7

Please sign in to comment.