This commit is contained in:
Cabooman 2024-02-06 08:22:13 +01:00
parent 7e4bd653bf
commit 041be95b29
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
name: Compile All Batteries name: Compile All Batteries
# Here we tell GitHub when to run the workflow. # Here we tell GitHub when to run the workflow.
# on: [push, pull_request] on: [push, pull_request]
# This is the list of jobs that will be run concurrently. # This is the list of jobs that will be run concurrently.
# Since we use a build matrix, the actual number of jobs # Since we use a build matrix, the actual number of jobs

View file

@ -2,7 +2,7 @@
name: Compile All Inverters name: Compile All Inverters
# Here we tell GitHub when to run the workflow. # Here we tell GitHub when to run the workflow.
# on: [push, pull_request] on: [push, pull_request]
# This is the list of jobs that will be run concurrently. # This is the list of jobs that will be run concurrently.
# Since we use a build matrix, the actual number of jobs # Since we use a build matrix, the actual number of jobs

View file

@ -2,7 +2,7 @@
name: Run pre-commit name: Run pre-commit
# on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
pre-commit: pre-commit:

View file

@ -21,7 +21,7 @@ jobs:
run: | run: |
set -e # Exit immediately on non-zero exit code set -e # Exit immediately on non-zero exit code
cd build/test cd build/test
for test_executable in utils/*; do for test_executable in *; do
if [ -x "$test_executable" ]; then if [ -x "$test_executable" ]; then
./"$test_executable" ./"$test_executable"
fi fi