From: Joerg Behrmann Date: Sat, 9 Dec 2023 11:26:02 +0000 (+0100) Subject: ci: print version of used tools X-Git-Tag: v20~96^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2144%2Fhead;p=thirdparty%2Fmkosi.git ci: print version of used tools --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4df2ab86..02ec88ed3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,19 +26,27 @@ jobs: npm install -g pyright - name: Run ruff - run: ruff mkosi/ tests/ + run: | + ruff --version + ruff mkosi/ tests/ - name: Check that tabs are not used in code run: sh -c '! git grep -P "\\t" "*.py"' - name: Type Checking (mypy) - run: python3 -m mypy mkosi/ tests/ + run: | + python3 -m mypy --version + python3 -m mypy mkosi/ tests/ - name: Type Checking (pyright) - run: pyright mkosi/ tests/ + run: | + pyright --version + pyright mkosi/ tests/ - name: Unit Tests - run: python3 -m pytest -sv tests/ + run: | + python3 -m pytest --version + python3 -m pytest -sv tests/ - name: Test execution from current working directory run: python3 -m mkosi -h