Skip to content

fix truncate in middle of unicode char #90

fix truncate in middle of unicode char

fix truncate in middle of unicode char #90

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
env:
RUST_BACKTRACE: 'full'
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: test
POSTGRES_PORT: 5432
POSTGRES_USER: test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
- name: test
run: cargo test