chore(deps): Bump serde_json from 1.0.128 to 1.0.129 #2984
Workflow file for this run
This file contains 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: Code coverage | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
- 'demo/**' | |
- 'docs/**' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
- 'demo/**' | |
- 'docs/**' | |
workflow_dispatch: | |
jobs: | |
grcov: | |
runs-on: ubuntu-latest | |
env: | |
# PG_* variables are used by psql | |
PGDATABASE: test | |
PGHOST: localhost | |
PGUSER: postgres | |
services: | |
postgres: | |
image: postgis/postgis:14-3.3-alpine | |
env: | |
# POSTGRES_* variables are used by the postgis/postgres image | |
POSTGRES_DB: ${{ env.PGDATABASE }} | |
POSTGRES_USER: ${{ env.PGUSER }} | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
# will assign a random free host port | |
- 5432/tcp | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Setup database | |
run: | | |
sudo apt-get install postgresql-client | |
tests/fixtures/initdb.sh | |
env: | |
PGPORT: ${{ job.services.postgres.ports[5432] }} | |
- name: Install nightly toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-10-01 | |
override: true | |
- name: Cleanup GCDA files | |
run: rm -rf martin/target/debug/deps/*.gcda | |
- name: Run tests | |
run: cargo test | |
env: | |
CARGO_INCREMENTAL: '0' | |
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
DATABASE_URL: postgres://${{ env.PGUSER }}@${{ env.PGHOST }}:${{ job.services.postgres.ports[5432] }}/${{ env.PGDATABASE }} | |
- name: Gather coverage data | |
id: coverage | |
uses: actions-rs/[email protected] | |
- name: Codecov upload | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ${{ steps.coverage.outputs.report }} | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Check conditional cfg values | |
run: | | |
cargo check -Z unstable-options -Z check-cfg --workspace | |
env: | |
RUSTFLAGS: '-D warnings' |