Skip to content

Update clap requirement from 3.0 to 4.4 #39

Update clap requirement from 3.0 to 4.4

Update clap requirement from 3.0 to 4.4 #39

Workflow file for this run

name: Test
on: [ push, workflow_dispatch ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo
uses: Swatinem/[email protected]
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
env:
RUST_BACKTRACE: 1