Skip to content
Closed
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Fix param
  • Loading branch information
ShaharNaveh committed Mar 24, 2026
commit d3f062e3d4b89bded5d29fb0a78b75921bea3d24
3 changes: 1 addition & 2 deletions .github/workflows/cron-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
if: ${{ github.event_name != 'pull_request' }}
uses: codecov/codecov-action@v5
with:
files: |
./codecov.lcov
files: ./codecov.lcov

testdata:
name: Collect regression test data
Expand Down Expand Up @@ -175,7 +174,7 @@
- name: collect microbenchmarks data
run: cargo criterion --bench microbenchmarks
- name: restructure generated files
run: |

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2185:info:2:1: Some finds don't have a default path. Specify '.' explicitly [shellcheck] Raw Output: i:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2185:info:2:1: Some finds don't have a default path. Specify '.' explicitly [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:6:66: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2086:info:6:66: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:6:53: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2086:info:6:53: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:6:59: Quote this to prevent word splitting [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2046:warning:6:59: Quote this to prevent word splitting [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2044:warning:6:13: For loops over find output are fragile. Use find -exec or a while read loop [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2044:warning:6:13: For loops over find output are fragile. Use find -exec or a while read loop [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2038:warning:7:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2038:warning:7:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2038:warning:5:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2038:warning:5:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2038:warning:4:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2038:warning:4:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2038:warning:3:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2038:warning:3:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck]

Check warning on line 177 in .github/workflows/cron-ci.yaml

View workflow job for this annotation

GitHub Actions / format_check

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2038:warning:2:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck] Raw Output: w:.github/workflows/cron-ci.yaml:177:9: shellcheck reported issue in this script: SC2038:warning:2:1: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames [shellcheck]
cd ./target/criterion/reports
find -type d -name cpython | xargs rm -rf
find -type d -name rustpython | xargs rm -rf
Expand Down
Loading