Skip to content

Commit

Permalink
Periodic lychee lints (#12245)
Browse files Browse the repository at this point in the history
Separate workflow for Lychee lints.
Removing the check from CI workflow.
  • Loading branch information
andrei-near authored Oct 18, 2024
1 parent ba6c707 commit 4ddca0e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,15 +257,6 @@ jobs:
tool: just
- run: just check-protocol-schema

lychee_checks:
name: "Lychee Lints"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@2ac9f030ccdea0033e2510a23a67da2a2da98492
with:
fail: true

check_fmt:
name: "Cargo Fmt"
runs-on: ubuntu-latest
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/lychee_lints.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lychee Lints

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
schedule:
# At 17:15 on every day-of-month.
- cron: '15 17 */1 * *'


jobs:
lychee_checks:
name: "Lychee Lints"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@2ac9f030ccdea0033e2510a23a67da2a2da98492
with:
fail: true

0 comments on commit 4ddca0e

Please sign in to comment.