Skip to content

Update CPU and memory details by switching to lshw method instead of … #1026

Update CPU and memory details by switching to lshw method instead of …

Update CPU and memory details by switching to lshw method instead of … #1026

Workflow file for this run

name: Test code quality
on: push
jobs:
code-quality-python:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Workaround github issue https:/actions/runner-images/issues/7192
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
- name: Install required system packages only for Ubuntu Linux
run: |
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install -y python3 python3-pip python3-aiohttp python3-msgpack python3-aiodns python3-alembic python3-sqlalchemy python3-setproctitle redis python3-aioredis python3-psutil sudo acl curl systemd-container squashfs-tools debootstrap python3-packaging python3-nftables python3-jsonschema
pip install --upgrade typing-extensions types-PyYAML
- name: Install required Python packages
run: |
python3 -m pip install hatch
- name: Test style wth ruff, black and isoort
run: |
hatch run lint:style
- name: Test typing with Mypy
run: |
hatch run lint:typing
code-quality-shell:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Workaround github issue https:/actions/runner-images/issues/7192
run: sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
- name: Install required system packages only for Ubuntu Linux
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Run Shellcheck on all shell scripts
run: |
find ./ -type f -name "*.sh" -exec shellcheck {} \;