Skip to content

Update clap to v4

Update clap to v4 #1

Workflow file for this run

name: Continuous Integration
on:
push:
paths-ignore:
- "**/*.md"
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
rust-checks:
name: Rust Checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
action:
- command: build
args: --release
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --all-features --workspace -- -D warnings
- command: test
args: --color always
steps:
- name: Install XCB
run: sudo apt install -y libxcb1-dev libxcbrandr0-dev libxcb-shm0-dev
- uses: actions/checkout@v4
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}