Skip to content

Commit

Permalink
Trying to fail...
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabooman committed Feb 6, 2024
1 parent 4577df0 commit 7e4bd65
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-all-batteries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Compile All Batteries

# 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.
# Since we use a build matrix, the actual number of jobs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-all-inverters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Compile All Inverters

# 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.
# Since we use a build matrix, the actual number of jobs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: Run pre-commit

on: [push, pull_request]
# on: [push, pull_request]

jobs:
pre-commit:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ jobs:
run: |
set -e # Exit immediately on non-zero exit code
cd build/test
find . -type f -executable -exec {} \;
for test_executable in utils/*; do
if [ -x "$test_executable" ]; then
./"$test_executable"
fi
done

0 comments on commit 7e4bd65

Please sign in to comment.