Skip to content

Bump clap from 4.5.18 to 4.5.19 #391

Bump clap from 4.5.18 to 4.5.19

Bump clap from 4.5.18 to 4.5.19 #391

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt --all -- --check
test:
strategy:
matrix:
os:
- ubuntu-20.04
- windows-2019
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build & test
run: cargo test