Skip to content

Commit

Permalink
ci: nightly GitHub Action workflow
Browse files Browse the repository at this point in the history
- Renames the nightly workflow test in '.github/workflows/nightly.yml'
- detects unused dependencies,
- detects Rust version becoming stale w.r.t. stable

Fixes #983
  • Loading branch information
huitseeker committed Jan 19, 2024
1 parent 944c1d9 commit ed5507b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Nightly tests on main
# Nightly sanity checks
name: nightly

on:
workflow_dispatch: {}
# Once per day at 00:00 UTC
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
linux_exhaustive:
Expand Down Expand Up @@ -98,4 +101,9 @@ jobs:
labels: |
nightly
automated issue
unused-dependencies:
uses: lurk-lab/ci-workflows/.github/workflows/unused-deps.yml@main

rust-version-check:
uses: lurk-lab/ci-workflows/.github/workflows/rust-version-check.yml@main

0 comments on commit ed5507b

Please sign in to comment.