From 041be95b292d0773dbb4e89425ecf2042e4a502a Mon Sep 17 00:00:00 2001 From: Cabooman <81711263+Cabooman@users.noreply.github.com> Date: Tue, 6 Feb 2024 08:22:13 +0100 Subject: [PATCH] Close! --- .github/workflows/compile-all-batteries.yml | 2 +- .github/workflows/compile-all-inverters.yml | 2 +- .github/workflows/run-pre-commit.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compile-all-batteries.yml b/.github/workflows/compile-all-batteries.yml index 01fe6802..dcb9a1f6 100644 --- a/.github/workflows/compile-all-batteries.yml +++ b/.github/workflows/compile-all-batteries.yml @@ -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 diff --git a/.github/workflows/compile-all-inverters.yml b/.github/workflows/compile-all-inverters.yml index e4339807..f33f0d26 100644 --- a/.github/workflows/compile-all-inverters.yml +++ b/.github/workflows/compile-all-inverters.yml @@ -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 diff --git a/.github/workflows/run-pre-commit.yml b/.github/workflows/run-pre-commit.yml index 6abd4ae0..aedd71f8 100644 --- a/.github/workflows/run-pre-commit.yml +++ b/.github/workflows/run-pre-commit.yml @@ -2,7 +2,7 @@ name: Run pre-commit -# on: [push, pull_request] +on: [push, pull_request] jobs: pre-commit: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 6bf3043f..e0a6a971 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -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