From 0fa133a0c5e065065ef96ac2b6c0284cf5da265d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 10 Nov 2020 15:25:52 +0100 Subject: [PATCH] Run checking scripts directly --- .github/workflows/validate-header-guards.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-header-guards.yml b/.github/workflows/validate-header-guards.yml index a8d61aa0..ad70bcd2 100644 --- a/.github/workflows/validate-header-guards.yml +++ b/.github/workflows/validate-header-guards.yml @@ -29,8 +29,8 @@ jobs: - name: Check that there are no duplicated filenames run: | - python tools/scripts/checkDuplicateFilenames.py + ./tools/scripts/checkDuplicateFilenames.py - name: Check that all source files have the correct license header run: | - python tools/scripts/checkLicense.py + ./tools/scripts/checkLicense.py