Runner info #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: Get info on runner | |
run-name: Runner info | |
on: | |
# needs to be started manually | |
workflow_dispatch: | |
jobs: | |
List-Input-File: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶" | |
- run: lscpu | |
- run: echo "🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶 🔶" | |
- run: free -h | |
- run: echo "🍏 This job's status is ${{ job.status }}." | |
- run: echo "🎉 Woohoo! Your action is complete! Have an amazing day and happy coding! 🚀" |