Skip to content

chore(main): release ut 0.1.3 #9

chore(main): release ut 0.1.3

chore(main): release ut 0.1.3 #9

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Format
run: cargo fmt --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
# Default features build the real recorder (audio-capture -> cpal -> ALSA)
# and the status overlay (ui -> Wayland/xkb), so the system libs must be
# present for clippy/test to compile them.
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libasound2-dev \
libwayland-dev \
libxkbcommon-dev \
pkg-config
- name: Clippy
run: cargo clippy --all-targets --locked -- -D warnings
- name: Test
run: cargo test --locked