Nightly Latest Dependencies Check #168
This file contains hidden or 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 | |
| env: | |
| RUSTFLAGS: "-D warnings -C link-arg=-fuse-ld=lld" | |
| jobs: | |
| latest_deps: | |
| name: Latest Dependencies | |
| runs-on: starkware-ubuntu-24.04-medium | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/bootstrap | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: npm install -g [email protected] | |
| - name: Update Dependencies | |
| run: cargo update --verbose | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Test | |
| run: cargo test --verbose |