From 74b585b046a8feffd4d44c7258a55c52605ae034 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sat, 14 Oct 2023 22:59:26 -0500 Subject: [PATCH] requirement: fix libsystemd-dev placement --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 604d4a5..ff07e99 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -16,10 +16,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | + apt install -y libsystemd-dev python3 -m pip install --upgrade pip pip3 install -r requirements.txt pip3 install pylint - apt install -y libsystemd-dev - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py')