Skip to content

Commit

Permalink
Run nvchecker as scheduled CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellass committed Jul 28, 2024
1 parent f981673 commit bf3b2ea
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nvchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: nvchecker

on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:

jobs:
nvchecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nvchecker
run: |
sudo apt-get update
sudo apt-get install nvchecker
- name: Run nvchecker
run: |
nvchecker -c nvchecker.toml | tee nvchecker.out
test -s nvchecker.out && exit 1

0 comments on commit bf3b2ea

Please sign in to comment.