daydream

A small matrix web client written in rust
git clone git://archive.git.mtrnord.blog/daydream-mx/daydream.git
Log | Files | Refs | README | LICENSE

check.yml (405B)


      1 name: Cargo Check
      2 on: [pull_request]
      3 jobs:
      4   check:
      5     runs-on: ubuntu-latest
      6     steps:
      7       - uses: actions/checkout@v2
      8       - name: Setup Rust
      9         uses: actions-rs/toolchain@v1
     10         with:
     11           toolchain: nightly
     12       - name: Run fmt
     13         run: cargo fmt -- --check
     14       - name: Run clippy
     15         run: cargo clippy -- --deny=warnings
     16       - name: Run check
     17         run: cargo check