Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/run_tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ jobs:
make install-node-modules || make install-node-modules || make install-node-modules
timeout-minutes: 15

# Install c8
- name: Install c8
run: npm install c8
timeout-minutes: 5

# Initialize development environment:
- name: 'Initialize development environment'
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ desc_link_text=${DESC_LINK_TEXT:-'addition'}
# Define a list of keywords:
if [[ -z "${KEYWORDS:-}" ]]; then
keywords=(
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
"stdmath"
"mathematics"
"math"
"add"
"sum"
"addition"
"arithmetic"
"summation"
)
else
IFS=','; read -ra keywords <<< "${KEYWORDS}"; IFS=' ';
Expand All @@ -90,14 +90,14 @@ rand_max=${RAND_MAX:-'10.0'}
# Define a list of values for first input array:
if [[ -z "${X_VALUES_LEN_8:-}" ]]; then
x_values_len_8=(
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
'1.0'
'2.0'
'3.0'
'4.0'
'5.0'
'6.0'
'7.0'
'8.0'
)
else
IFS=','; read -ra x_values_len_8 <<< "${X_VALUES_LEN_8}"; IFS=' ';
Expand All @@ -106,14 +106,14 @@ fi
# Define a list of values for second input array:
if [[ -z "${Y_VALUES_LEN_8:-}" ]]; then
y_values_len_8=(
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
'11.0'
'12.0'
'13.0'
'14.0'
'15.0'
'16.0'
'17.0'
'18.0'
)
else
IFS=','; read -ra y_values_len_8 <<< "${Y_VALUES_LEN_8}"; IFS=' ';
Expand Down
Loading