Skip to content

Update Rust crate serde to 1.0.210 #751

Update Rust crate serde to 1.0.210

Update Rust crate serde to 1.0.210 #751

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-24.04
services:
postgres:
image: postgres
env:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1
with:
toolchain: stable
- run: |
TEST_DATABASE=postgres://test:test@localhost RUST_LOG=v=trace cargo test --all-features