Skip to content

Allow image size specification using any SI or IEC unit #5

Allow image size specification using any SI or IEC unit

Allow image size specification using any SI or IEC unit #5

Workflow file for this run

---
name: Run CI checks
on: [pull_request]
jobs:
unittests-fedora:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install make
run: sudo apt-get install make
- name: Run the tests
run: sudo make container-unittests-fedora
unittests-el7:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install make
run: sudo apt-get install make
- name: Run the tests
run: sudo make container-unittests-el7
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install make, pylint and flake8
run: sudo apt-get install make pylint flake8
- name: Run pylint
run: make pylint
- name: Run flake8
run: make flake8