feat: update dependencies, including ureq, toml, sha2, inquire, color… #39
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: Test and Coverage | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy, llvm-tools-preview | |
| - uses: taiki-e/install-action@cargo-llvm-cov | |
| - name: Formatting | |
| run: cargo fmt --all --check | |
| - name: Strict Clippy | |
| run: cargo clippy --locked --all-targets --all-features -- -D warnings | |
| - name: Enforce documented core-logic coverage | |
| run: > | |
| cargo llvm-cov --locked --lib --tests | |
| --ignore-filename-regex '(main|cli|preset|update|cache|ui)\.rs' | |
| --summary-only | |
| --fail-under-lines 90 | |
| - name: Validate Unix installer | |
| run: shellcheck scripts/install.sh | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run test suite | |
| run: cargo test --locked | |
| - name: Parse PowerShell installer | |
| if: runner.os == 'Windows' | |
| shell: pwsh | |
| run: | | |
| $errors = $null | |
| [void][System.Management.Automation.Language.Parser]::ParseFile( | |
| (Resolve-Path scripts/install.ps1), | |
| [ref]$null, | |
| [ref]$errors | |
| ) | |
| if ($errors.Count -gt 0) { throw ($errors | Out-String) } | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: "1.85" | |
| - run: cargo check --locked --all-targets | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: rustsec/audit-check@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |