Skip to content

implement function print_pq #11

implement function print_pq

implement function print_pq #11

Workflow file for this run

name: build
on:
push:
branches:
- master
jobs:
check:
name: Check and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
# `cargo check` command here will use installed `nightly`
# as it is set as an "override" for current directory
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Run cargo bench
uses: actions-rs/cargo@v1
with:
command: bench