各アクションの名前指定 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Naming | ||
on: push | ||
jobs: | ||
print: | ||
name: Super Useful Job #ジョブ名の指定 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Amazing Script #ステップ名の指定 | ||
run: echo "Hello" |