Skip to content

refactor: change cli table crate #58

refactor: change cli table crate

refactor: change cli table crate #58

Workflow file for this run

name: Lint and Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain with clippy available
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -Dwarnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test