Skip to content

Commit

Permalink
add weekly cargo install check to prevent issue like #2
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Oct 19, 2021
1 parent ef3b186 commit d9fc9f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Weekly check
on:
schedule:
# Every Saturday 10:21 in JST
- cron: '21 2 * * 6'
workflow_dispatch:

jobs:
cargo-install:
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo install --color always hgrep
- run: hgrep --version

0 comments on commit d9fc9f4

Please sign in to comment.