Skip to content

Commit

Permalink
Close!
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabooman committed Feb 6, 2024
1 parent 7e4bd65 commit 041be95
Show file tree
Hide file tree
Showing 4 changed files with 4 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
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
set -e # Exit immediately on non-zero exit code
cd build/test
for test_executable in utils/*; do
for test_executable in *; do
if [ -x "$test_executable" ]; then
./"$test_executable"
fi
Expand Down

0 comments on commit 041be95

Please sign in to comment.