Skip to content

Commit c98aa72

Browse files
committed
Merge branch 'main' into dekomiss/bindingstrigger
2 parents 6261e9c + 8ee1cf3 commit c98aa72

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
@@ -6,6 +6,9 @@ on:
66
branches: [ "main" ]
77
pull_request:
88
branches: [ "main" ]
9+
schedule:
10+
# Run at 8:00 AM every day
11+
- cron: "0 8 * * *"
912

1013
env:
1114
VersionSuffix: ${{ github.event_name == 'workflow_dispatch' && 'manualtrigger' || null }}
@@ -133,4 +136,4 @@ jobs:
133136

134137
- name: Run Regorus.Tests
135138
run: dotnet test --no-restore
136-
working-directory: ./bindings/csharp/Regorus.Tests
139+
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)