Skip to content

Commit

Permalink
Introduce the token and set the num of random
Browse files Browse the repository at this point in the history
  • Loading branch information
Lht97 committed Dec 20, 2024
1 parent f652641 commit 0a19cde
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/profile_cbds_blocks_big.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
options.feature_name = '${{ matrix.feature }}';
options.solver_names = {'${{ matrix.solver }}', '${{ matrix.competitor_1 }}', '${{ matrix.competitor_2 }}', '${{ matrix.competitor_3 }}'};
options.dim = '${{ matrix.dim }}';
options.n_runs = 2;
options.n_runs = 1;
options.run_plain = ${{ matrix.run_plain }};
options.summarize_log_ratio_profiles = ${{ matrix.summarize_log_ratio_profiles }};
profile_optiprofiler(options);
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_cbds_permuted_big.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
options.feature_name = '${{ matrix.feature }}';
options.solver_names = {'${{ matrix.solver }}', '${{ matrix.competitor }}'};
options.dim = '${{ matrix.dim }}';
options.n_runs = 2;
options.n_runs = 1;
options.run_plain = ${{ matrix.run_plain }};
options.summarize_log_ratio_profiles = ${{ matrix.summarize_log_ratio_profiles }};
profile_optiprofiler(options);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
options.feature_name = '${{ matrix.feature }}';
options.solver_names = {'${{ matrix.solver }}', '${{ matrix.competitor_1 }}', '${{ matrix.competitor_2 }}'};
options.dim = '${{ matrix.dim }}';
options.n_runs = 2;
options.n_runs = 1;
options.run_plain = ${{ matrix.run_plain }};
options.summarize_log_ratio_profiles = ${{ matrix.summarize_log_ratio_profiles }};
profile_optiprofiler(options);
Expand Down
3 changes: 3 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Codecov

codecov:
token: 43d14d1f-aab0-4b34-ae45-c550fdbc98b2

coverage:
status:
project:
Expand Down

1 comment on commit 0a19cde

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (2)

aab
fdbc

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the git@github.com:blockwise-direct-search/bds.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/blockwise-direct-search/bds/actions/runs/12426964277/attempts/1'
Pattern suggestions ✂️ (1)

You could add these patterns to .github/actions/spelling/patterns.txt:

# Automatically suggested patterns

# hit-count: 1 file-count: 1
# uuid:
\b[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}\b

Warnings (2)

See the 📜action log or 📝 job summary for details.

⚠️ Warnings Count
ℹ️ candidate-pattern 1
⚠️ non-alpha-in-dictionary 5

See ⚠️ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Please sign in to comment.