ci: check the size of the runner #2
Workflow file for this run
This file contains hidden or 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: Self-Hosted Runner Test | |
on: | |
push: | |
branches: ["**"] | |
jobs: | |
test-runner: | |
name: Check Runner Connectivity | |
runs-on: [self-hosted, linux] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Confirm Runner Connection | |
run: echo "Successfully connected to and ran on self-hosted runner." | |
- name: Check Disk Space | |
run: df -h |