Skip to content

feat: add Kitty keyboard protocol support for Alt-e keybind #10

feat: add Kitty keyboard protocol support for Alt-e keybind

feat: add Kitty keyboard protocol support for Alt-e keybind #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
id-token: write
jobs:
check:
name: Nix Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run all checks
run: nix flake check --print-build-logs
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build package
run: nix build --print-build-logs
ci-passed:
name: CI Passed
runs-on: ubuntu-latest
needs: [check, build]
if: always()
steps:
- name: Check all jobs passed
run: |
results=("${{ needs.check.result }}" "${{ needs.build.result }}")
for result in "${results[@]}"; do
if [[ "$result" == "failure" || "$result" == "cancelled" ]]; then
echo "::error::CI failed"
exit 1
fi
done
echo "All CI jobs passed"