Skip to content

fix(window): prevent showing header with decorations disabled #96

fix(window): prevent showing header with decorations disabled

fix(window): prevent showing header with decorations disabled #96

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Install dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install libmpv-dev
sudo sh -c 'echo "deb http://archive.ubuntu.com/ubuntu/ questing main" >> /etc/apt/sources.list'
sudo apt-get -y update
sudo apt-get -y install libssl-dev libgtk-4-dev libadwaita-1-dev gettext nodejs
- name: Lint fmt
run: cargo fmt --all -- --check
- name: Lint clippy
run: cargo clippy --all --no-deps -- -D warnings
- name: Build
run: cargo build