This repository was archived by the owner on Apr 1, 2026. It is now read-only.
chore: update Cargo.lock after removing unused dependencies #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUSTFLAGS: "-D warnings" | |
| jobs: | |
| check: | |
| name: Format + Clippy + Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Checkout fs-libs | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: FreeSynergy/fs-libs | |
| path: ../fs-libs | |
| token: ${{ secrets.FS_LIBS_TOKEN }} | |
| - name: Checkout fs-desktop | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: FreeSynergy/fs-desktop | |
| path: ../fs-desktop | |
| - name: Checkout fs-managers | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: FreeSynergy/fs-managers | |
| path: ../fs-managers | |
| - name: Install Linux dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }} | |
| restore-keys: ${{ runner.os }}-cargo- | |
| - name: Format check | |
| run: cargo fmt --all -- --check | |
| - name: Clippy (OOP lints) | |
| run: | | |
| cargo clippy --workspace --all-targets -- \ | |
| -D clippy::large_enum_variant \ | |
| -D clippy::cognitive_complexity \ | |
| -D clippy::too_many_arguments \ | |
| -D clippy::too_many_lines \ | |
| -D clippy::wildcard_imports \ | |
| -D clippy::unused_self | |
| - name: Tests | |
| run: cargo test --workspace | |
| deny: | |
| name: Dependency licenses + advisories | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: EmbarkStudios/cargo-deny-action@v2 | |
| machete: | |
| name: Unused dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bnjbvr/cargo-machete@main | |
| audit: | |
| name: Security audit | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: rustsec/audit-check@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |