static_cell 2.1.1

Statically allocated, initialized at runtime cell.
Documentation
name: Clippy check

on:
  push:
    branches: [ staging, trying, master ]
  pull_request:

jobs:
  clippy:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - rust: 1.56
          - rust: 1.63
    steps:
      - uses: actions/checkout@v2
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
            toolchain: ${{matrix.rust}}
            components: clippy
            override: true
      - name: Clippy check
        run: cargo clippy