Skip to content

Commit 0c8ab22

Browse files
committed
fix: Clippy warnings
Also schedule works to be run at 8:00 AM everyday. Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
1 parent 444b297 commit 0c8ab22

20 files changed

Lines changed: 75 additions & 37 deletions

.github/workflows/pr-extensions.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
env:
1013
CARGO_TERM_COLOR: always

.github/workflows/pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
env:
1013
CARGO_TERM_COLOR: always

.github/workflows/rust-clippy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
# The branches below must be a subset of the branches above
1717
branches: [ "main" ]
1818
workflow_dispatch:
19+
schedule:
20+
# Run at 8:00 AM every day
21+
- cron: "0 8 * * *"
1922

2023
jobs:
2124
rust-clippy-analyze:

.github/workflows/test-c-cpp.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
jobs:
1013
test:

.github/workflows/test-csharp.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
jobs:
1013
build-ffi:
@@ -129,4 +132,4 @@ jobs:
129132

130133
- name: Run Regorus.Tests
131134
run: dotnet test --no-restore
132-
working-directory: ./bindings/csharp/Regorus.Tests
135+
working-directory: ./bindings/csharp/Regorus.Tests

.github/workflows/test-ffi.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
jobs:
1013
test:

.github/workflows/test-go.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
jobs:
1013
test:

.github/workflows/test-java.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
jobs:
1013
test:

.github/workflows/test-musl.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
env:
1013
CARGO_TERM_COLOR: always

.github/workflows/test-no-std.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
# Run at 8:00 AM every day
10+
- cron: "0 8 * * *"
811

912
env:
1013
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)