Update metadata, badge, and citation for 2025-06-17 #3
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
# /qompassai/linux/.github/workflows/test-runner.yml | |
# --------------------------------------------------------- | |
# Copyright (C) 2025 Qompass AI, All rights reserved | |
name: Test Self-Hosted Runner | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '.github/workflows/test-runner.yml' | |
jobs: | |
selfhosted-check: | |
runs-on: [self-hosted, Linux, X64] | |
steps: | |
- name: ✅ Runner Info | |
run: | | |
echo "Running on: $(hostname)" | |
echo "Architecture: $(uname -m)" | |
echo "Operating System: $(uname -o)" | |
- name: 🔍 Check Neovim | |
run: | | |
which nvim | |
nvim --version | |
- name: 🔍 Check Nix | |
run: | | |
which nix | |
nix --version | |
- name: 🔍 Check Disk & Uptime | |
run: | | |
df -h / | |
uptime | |
- name: 📁 List Repo Files | |
uses: actions/checkout@v4 | |
- run: ls -al | |