Skip to content

Bump clap from 4.5.49 to 4.5.50 #770

Bump clap from 4.5.49 to 4.5.50

Bump clap from 4.5.49 to 4.5.50 #770

Workflow file for this run

name: Rust
on:
push:
branches: [ main, development ]
pull_request:
branches: [ main, development ]
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build
run: cargo build --verbose
- name: Build with GUI features
run: cargo build --verbose --features gui
- name: Run tests
run: cargo test --release --verbose
- name: Run tests with GUI features
run: cargo test --release --verbose --features gui