Skip to content

v0.6.16 — sidebar order: Logbook bookends the top tier #44

v0.6.16 — sidebar order: Logbook bookends the top tier

v0.6.16 — sidebar order: Logbook bookends the top tier #44

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: fmt + clippy + test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install GTK4 / libadwaita / SQLite
run: |
sudo apt-get update
sudo apt-get install -y \
libgtk-4-dev \
libadwaita-1-dev \
libsqlite3-dev \
pkg-config
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: cargo fmt --check
run: cargo fmt --all --check
- name: cargo clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: cargo test
run: cargo test --workspace