This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
Nightly Latest Dependencies Check #286
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Latest Dependencies Check | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs at 00:00 UTC every day | |
jobs: | |
latest_deps: | |
name: Latest Dependencies | |
runs-on: ubuntu-20.04 | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Update Dependencies | |
run: cargo update --verbose | |
- name: Build | |
run: cargo build --verbose | |
- name: Test | |
run: cargo test --verbose |