Skip to content

nightly

nightly #96

Workflow file for this run

name: nightly
on:
schedule:
- cron: 0 0 * * 1
jobs:
build:
strategy:
matrix:
rust: [stable, beta]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.rust }}
- run: rustup default ${{ matrix.rust }}
- run: rustup component add rustfmt
- run: rustup component add clippy
- run: cargo update
- run: cargo build
- run: cargo test
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- --deny warnings