Skip to content

chore(deps): Bump clap from 4.5.16 to 4.5.17 (#159) #461

chore(deps): Bump clap from 4.5.16 to 4.5.17 (#159)

chore(deps): Bump clap from 4.5.16 to 4.5.17 (#159) #461

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Test
run: cargo test
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
override: true
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --check