Skip to content

Fix linux-bin tag build #343

Fix linux-bin tag build

Fix linux-bin tag build #343

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1
steps:
- run: rustup update stable
- uses: actions/checkout@v4
- run: cargo test --locked
# check print-completions don't fail
- run: cargo run --locked -- print-completions bash
- run: cargo run --locked -- print-completions fish
- run: cargo run --locked -- print-completions zsh
test-windows:
runs-on: windows-latest
env:
RUST_BACKTRACE: 1
steps:
- run: rustup update stable
- uses: actions/checkout@v4
- run: cargo check
rustfmt:
runs-on: ubuntu-latest
steps:
- run: rustup update stable
- uses: actions/checkout@v4
- run: cargo fmt -- --check