Skip to content

refactor: Refactor quicksort implementation #17

refactor: Refactor quicksort implementation

refactor: Refactor quicksort implementation #17

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Builds and runs tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose