Skip to content

feat: add simpler etag handling to all non-critical endpoints #297

feat: add simpler etag handling to all non-critical endpoints

feat: add simpler etag handling to all non-critical endpoints #297

Workflow file for this run

name: Code coverage
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'demo/**'
- 'docs/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'demo/**'
- 'docs/**'
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- name: Set up system dependencies
run: sudo apt-get update && sudo apt-get install -y gdal-bin sqlite3-tools postgresql-client
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
with: { tool: 'just,cargo-llvm-cov' }
- name: Generate code coverage
run: just coverage --codecov --output-path target/codecov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: target/codecov.info
fail_ci_if_error: true