From 7cd36f9797a8de740afdd4f9e22cfa004bf04531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Tue, 11 Apr 2023 15:30:29 +0200 Subject: [PATCH] CI: delete duplicate source code check from GitHub action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test case was testing a subset of the functionality, which is already tested by test case in `tests.yml`. Delete it, since it does not add any value. Signed-off-by: Tomáš Hozza --- .github/workflows/checks.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c786a5be..af1bbb75 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -56,21 +56,3 @@ jobs: with: ignore_words_list: msdos, pullrequest skip: ./.git,coverity,rpmbuild,samples - - source: - name: "Source code checks" - runs-on: ubuntu-latest - steps: - - name: "Clone Repository" - uses: actions/checkout@v3 - - name: "Run Tests" - uses: osbuild/containers/src/actions/privdocker@552e30cf1b4ed19c6ddaa57f96c342b3dff4227b - with: - image: ghcr.io/osbuild/osbuild-ci:latest-202209070757 - run: | - git config --global --add safe.directory /osb/workdir - python3 -m pytest \ - test/src/test_pylint.py \ - -k autopep8 \ - --rootdir=. \ - -v