Skip to content

Ghostty supports the Kitty graphics protocol. (#58) #82

Ghostty supports the Kitty graphics protocol. (#58)

Ghostty supports the Kitty graphics protocol. (#58) #82

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macOS-latest]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
components: clippy, rustfmt
- uses: actions/checkout@master
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-ubuntu:
runs-on: "ubuntu-latest"
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
components: clippy, rustfmt
- uses: actions/checkout@master
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy --all-features -- -D warnings
- name: Build
run: cargo build --all-features --verbose
- name: Run tests
run: cargo test --all-features --verbose