fix(windows): quote diff-pane argv so git receives the delta pager in… #231
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| alacritree: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # eframe (winit + glow), arboard (X11/Wayland clipboard), and the unix | |
| # fontconfig dep all need C headers that aren't on the runner by default. | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends \ | |
| cmake pkg-config \ | |
| libfreetype6-dev libfontconfig1-dev \ | |
| libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev \ | |
| libwayland-dev libgl1-mesa-dev libegl1-mesa-dev | |
| - name: Rust toolchain | |
| run: rustup show && rustup component add clippy | |
| - name: Build | |
| run: cargo build -p alacritree --locked | |
| - name: Test | |
| run: cargo test -p alacritree --locked | |
| - name: Clippy | |
| run: cargo clippy -p alacritree --all-targets --locked |