Skip to content

Bump clap from 4.5.7 to 4.5.8 #30

Bump clap from 4.5.7 to 4.5.8

Bump clap from 4.5.7 to 4.5.8 #30

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Format check
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings