From b2c8feacde36501e56715a11bf072e8244b2c495 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Wed, 15 Oct 2025 09:56:37 +0800 Subject: [PATCH] update tests --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8444494..252a6ec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,18 +6,18 @@ on: pull_request: jobs: - test: + shell-quality-checks: runs-on: macos-latest steps: - - name: Checkout repository + - name: Checkout source code uses: actions/checkout@v4 - - name: Install tools + - name: Install shell linting and testing tools run: brew install bats-core shfmt shellcheck - - name: Format code + - name: Auto-format shell scripts with shfmt run: ./scripts/format.sh - - name: Run all checks + - name: Run shellcheck linter and bats tests run: ./scripts/check.sh