Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Nightly Latest Dependencies Check #285

Nightly Latest Dependencies Check

Nightly Latest Dependencies Check #285

Workflow file for this run

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