feat(03-workflow-runners): add macos runner #6
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: 03 - Workflow Runners | |
on: push | |
jobs: | |
ubuntu-echo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Show OS | |
run: | | |
echo "This job is running on an Ubuntu runner." | |
echo "Runner OS: $RUNNER_OS" | |
windows-echo: | |
runs-on: windows-latest | |
steps: | |
- name: Show OS | |
shell: bash | |
run: | | |
echo "This job is running on a Windows runner." | |
echo "Runner OS: $RUNNER_OS" | |
mac-echo: | |
runs-on: macos-latest | |
steps: | |
- name: Show OS | |
run: | | |
echo "This job is running on a MacOS runner." | |
echo "Runner OS: $RUNNER_OS" |