Skip to content

refactor for Clap 4.x #24

refactor for Clap 4.x

refactor for Clap 4.x #24

Workflow file for this run

name: Rust
on: [push]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Format
run: cargo fmt -- --check --verbose
- name: Lint
run: cargo check --verbose
- name: Build dev
run: cargo build --verbose
- name: Test
run: cargo test --verbose