1919
2020jobs :
2121 test :
22- name : Test on ${{ matrix.platform }}
22+ name : test on ${{ matrix.platform }}
2323 runs-on : ubuntu-latest
2424 strategy :
2525 matrix :
@@ -35,16 +35,16 @@ jobs:
3535 container : ${{ matrix.container }}
3636
3737 steps :
38- - name : Checkout code
38+ - name : checkout code
3939 uses : actions/checkout@v4
4040
41- - name : Set up Bash environment
41+ - name : set up bash environment
4242 shell : bash
4343 run : |
4444 bash --version
4545 echo "Bash version check completed on ${{ matrix.platform }}"
4646
47- - name : Install dependencies
47+ - name : install dependencies
4848 shell : bash
4949 run : |
5050 if command -v apt-get >/dev/null 2>&1; then
@@ -60,31 +60,31 @@ jobs:
6060 shellcheck --version
6161 echo "All dependencies installed successfully on ${{ matrix.platform }}"
6262
63- - name : Install test dependencies
63+ - name : install test dependencies
6464 shell : bash
6565 run : |
6666 echo "Installing BATS and dependencies..."
6767 make libs
6868 echo "Dependencies installed successfully"
6969
70- - name : Run all tests
70+ - name : run all tests
7171 shell : bash
7272 run : |
7373 echo "Starting comprehensive test suite..."
7474 make all
7575 echo "✅ All tests completed successfully"
7676
77- - name : Run validation checks
77+ - name : run validation checks
7878 shell : bash
7979 run : |
8080 echo "Running validation and linting..."
8181 make validate
8282 echo "✅ Validation completed successfully"
8383
84- - name : Test summary
84+ - name : test summary
8585 shell : bash
8686 run : |
8787 echo "🎉 All checks passed on ${{ matrix.platform }}"
8888 echo "- All tests passing"
8989 echo "- Syntax validation successful"
90- echo "- ShellCheck validation successful"
90+ echo "- ShellCheck validation successful"
0 commit comments