Skip to content

scoop: bump alacritree to v0.2.2 (#17) #89

scoop: bump alacritree to v0.2.2 (#17)

scoop: bump alacritree to v0.2.2 (#17) #89

Workflow file for this run

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