Skip to content

chore: Bump clap from 4.5.38 to 4.5.39 #195

chore: Bump clap from 4.5.38 to 4.5.39

chore: Bump clap from 4.5.38 to 4.5.39 #195

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
debug_build:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
runs-on: ${{ matrix.os }}
name: Debug Build ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --locked --verbose --target ${{ matrix.target }}
- name: Run tests
run: cargo test --locked --verbose --all-features --target ${{ matrix.target }}
release_build:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
runs-on: ${{ matrix.os }}
name: Release Build ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --release --locked --verbose --target ${{ matrix.target }}
- name: Run tests
run: cargo test --release --locked --verbose --all-features --target ${{ matrix.target }}
code_guidelines:
runs-on: ubuntu-latest
name: Code guidelines
steps:
- uses: actions/checkout@v4
- name: Update Rust
run: |
rustup update
rustup toolchain install nightly
rustup component add --toolchain nightly rustfmt
- name: fmt
run: cargo +nightly fmt --check
- name: clippy
run: cargo clippy --locked --all-targets --all-features -- -D warnings
- name: machete
uses: bnjbvr/cargo-machete@main
linelint:
runs-on: ubuntu-latest
name: Linelint
steps:
- uses: actions/checkout@v4
- uses: fernandrone/linelint@0.0.6
id: linelint