bash 명령어를 작동시켜보자.
run-shell-command 라는 job은 ubuntu-latest라는 가상 머신 기반으로 작동되며, echo 명령어가 사용된다.
name: Shell Commands
on: [push, pull_request]
jobs:
run-shell-command:
runs-on: ubuntu-latest
steps:
- name: echo a string
run: echo "Hello, world!"
- name: multiline script
run: |
git --version
python --version
아래와 같이, 이메일도 받을 수가 있다.
(github -> settings -> notification 설정)
출처: https://docs.github.com/en/actions/managing-workflow-runs/enabling-debug-logging
위와 같이 셋팅한 결과, 아래 그림과 같이 상세한 디버깅 정보를 확인할 수 있다.