From c4eece489b8471348819dd0b623f6503ba67e1ef Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 2 Nov 2025 23:17:57 +0100 Subject: [PATCH] Rename check_syntax.sh to syntax.sh --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- tests/{check_syntax.sh => syntax.sh} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/{check_syntax.sh => syntax.sh} (100%) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 076efad5..b21a8e87 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -66,7 +66,7 @@ jobs: - name: Run syntax tests on unix dev run: | - ./tests/check_syntax.sh + ./tests/syntax.sh continue-on-error: true - name: Run unit tests on unix dev diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index dd5d3c35..51eacb0c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -35,7 +35,7 @@ jobs: - name: Run syntax tests on macOS dev run: | - ./tests/check_syntax.sh + ./tests/syntax.sh continue-on-error: true - name: Run unit tests on macOS dev diff --git a/tests/check_syntax.sh b/tests/syntax.sh similarity index 100% rename from tests/check_syntax.sh rename to tests/syntax.sh