Skip to content

fix(shortcuts): Prevent panic when deleting the last keybind of a custom shortcut. #1040

fix(shortcuts): Prevent panic when deleting the last keybind of a custom shortcut.

fix(shortcuts): Prevent panic when deleting the last keybind of a custom shortcut. #1040

Workflow file for this run

name: Continuous integration
on:
push:
branches: [master]
pull_request:
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install toolchain
run: rustup toolchain install 1.80.1 --component rustfmt
- name: fmt
run: cargo fmt --all --check
clippy:
name: Clippy Check
runs-on: ubuntu-24.04
steps:
- name: install system dependencies
run: sudo apt-get update && sudo apt-get install lld cmake libclang-dev libexpat1-dev libfontconfig-dev libfreetype-dev libpipewire-0.3-dev libpulse-dev pkg-config libxkbcommon-dev libudev-dev libinput-dev libwayland-dev
- uses: actions/checkout@v3
- name: install toolchain
run: rustup toolchain install 1.80.1 --component clippy
- name: clippy
run: cargo clippy --all-features
test:
name: Test
runs-on: ubuntu-24.04
steps:
- name: install system dependencies
run: sudo apt-get update && sudo apt-get install lld cmake libclang-dev libexpat1-dev libfontconfig-dev libfreetype-dev libpipewire-0.3-dev libpulse-dev pkg-config libxkbcommon-dev libudev-dev libinput-dev libwayland-dev
- uses: actions/checkout@v3
- name: install toolchain
run: rustup show
- name: test
run: cargo test --all-features