Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(l1): make the hive report run daily #1222

Merged
merged 3 commits into from
Nov 21, 2024
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Weekly Hive Coverage
name: Daily Hive Coverage

on:
schedule:
# Every Friday at midnight
- cron: '0 0 * * 5'
# Every day at UTC midnight
- cron: '0 0 * * *'
workflow_dispatch:

env:
RUST_VERSION: 1.80.1
Expand Down Expand Up @@ -41,3 +42,10 @@ jobs:

- name: Run Hive Simulation
run: make run-hive-on-latest SIMULATION=ethereum/engine
continue-on-error: true

- name: Caching
uses: Swatinem/rust-cache@v2

- name: Generate the hive report
run: cargo run -p hive_report
Loading