build(deps): bump actix-http from 3.11.1 to 3.11.2 (#605) #287
  
    
      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: Coverage | |
| on: | |
| push: | |
| branches: [master] | |
| permissions: { contents: read } | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| services: | |
| redis: | |
| image: redis:5.0.7 | |
| ports: | |
| - 6379:6379 | |
| options: --entrypoint redis-server | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Rust | |
| uses: actions-rust-lang/[email protected] | |
| with: | |
| toolchain: nightly | |
| components: llvm-tools-preview | |
| - name: Install just, cargo-llvm-cov, cargo-nextest | |
| uses: taiki-e/[email protected] | |
| with: | |
| tool: just,cargo-llvm-cov,cargo-nextest | |
| - name: Generate code coverage | |
| run: just test-coverage-codecov | |
| - name: Upload to Codecov | |
| uses: codecov/[email protected] | |
| with: | |
| files: codecov.json | |
| fail_ci_if_error: true | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |