Skip to content

refactor(chat): Richer chat entry representation (#35) #126

refactor(chat): Richer chat entry representation (#35)

refactor(chat): Richer chat entry representation (#35) #126

Workflow file for this run

name: Code Style
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies on Ubuntu
if: runner.os == 'Linux'
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libgtk-3-dev javascriptcoregtk-4.1 libsoup-3.0 webkit2gtk-4.1
version: 1.0
- name: Rust Caching
uses: Swatinem/rust-cache@v2
- name: Lint
run: cargo clippy
- name: Check formatting
run: cargo fmt --check