Skip to content

Bump clap from 4.4.16 to 4.4.18 #77

Bump clap from 4.4.16 to 4.4.18

Bump clap from 4.4.16 to 4.4.18 #77

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: format check
run: cargo fmt --check --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: clippy
run: cargo clippy
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build release
run: cargo build --release --verbose