* fix: Desktop file validation failing There was a missing [es] in a translation and a translated Comment that doesn't exist in english. This commit makes desktop-file-validate pass Signed-off-by: Ryan Brue <ryanbrue.dev@gmail.com> * improv(ci): Add desktop file validation to CI Signed-off-by: Ryan Brue <ryanbrue.dev@gmail.com> --------- Signed-off-by: Ryan Brue <ryanbrue.dev@gmail.com>
21 lines
No EOL
530 B
YAML
21 lines
No EOL
530 B
YAML
name: Cargo Build & Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
test:
|
|
name: cosmic-files - latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: sudo apt-get update; sudo apt-get install desktop-file-utils libclang-dev libglib2.0-dev libxkbcommon-dev
|
|
- run: desktop-file-validate --no-hints ./res/com.system76.CosmicFiles.desktop
|
|
- run: rustup update stable && rustup default stable
|
|
- run: cargo test --verbose |