on: push name: check rustfmt jobs: ci: runs-on: ubuntu-latest strategy: matrix: rust: - nightly steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true components: rustfmt - uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check