Skip to content

refactor: Refactor quicksort implementation #15

refactor: Refactor quicksort implementation

refactor: Refactor quicksort implementation #15

Workflow file for this run

name: fmt
on:
pull_request:
push:
branches:
- main
jobs:
fmt:
name: Runs Clippy and Fmt
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Run fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check