Skip to content

Add sort utils fn and apply them to 3-way quick sort first. #620

Add sort utils fn and apply them to 3-way quick sort first.

Add sort utils fn and apply them to 3-way quick sort first. #620

Workflow file for this run

name: build
on: pull_request
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cargo clippy
run: cargo clippy --all --all-targets -- -D warnings
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cargo test
run: cargo test