Kvm test #807
Workflow file for this run
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: Check Cgroup Version | |
on: [push, pull_request] # Trigger on push or pull request. Adjust as needed. | |
jobs: | |
check-cgroup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Check cgroup version | |
run: | | |
echo "Checking cgroup version and settings..." | |
grep cgroup /proc/filesystems | |
mount | grep cgroup | |
cat /proc/cgroups | |
cat /sys/fs/cgroup/cgroup.controllers |