Skip to content

Commit

Permalink
ci: check runner runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
GenjiruSUchiwa authored Nov 24, 2024
1 parent 6cd3bee commit 8f46fed
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-runtime.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check Runner Runtime

on:
workflow_dispatch:

jobs:
check-runtime:
runs-on: ubuntu-latest
steps:
- name: Runtime Info
run: |
echo "===== System Info ====="
uname -a
echo ""
echo "===== CPU Info ====="
lscpu
echo ""
echo "===== OS Release ====="
cat /etc/os-release

0 comments on commit 8f46fed

Please sign in to comment.