mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
add test
This commit is contained in:
parent
fab1b6eab9
commit
4b534acde8
38
.github/workflows/test.yml
vendored
Normal file
38
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
name: List Storage Space
|
||||
on: [workflow_dispatch]
|
||||
|
||||
|
||||
jobs:
|
||||
storage-space:
|
||||
runs-on: ubuntu-22
|
||||
|
||||
steps:
|
||||
- name: Root
|
||||
run: |
|
||||
df -h
|
||||
cd /
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /usr
|
||||
run: |
|
||||
cd /usr
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /usr/bin
|
||||
run: |
|
||||
cd /usr/bin
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /usr/local
|
||||
run: |
|
||||
cd /usr/local
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /usr/share
|
||||
run: |
|
||||
cd /usr/share
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /opt
|
||||
run: |
|
||||
cd /opt
|
||||
du -h --max-depth=1 / | sort -h
|
||||
- name: /opt/hostedtoolcache
|
||||
run: |
|
||||
cd /opt/hostedtoolcache
|
||||
du -h --max-depth=1 / | sort -h
|
Loading…
Reference in New Issue
Block a user