We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c58c96 commit 5fd00d1Copy full SHA for 5fd00d1
.github/workflows/ci.yml renamed to .github/workflows/pull_request.yml
@@ -1,4 +1,4 @@
1
-name: CI
+name: Pull Request
2
3
on:
4
workflow_dispatch:
@@ -109,6 +109,15 @@ jobs:
109
codegen:
110
name: Codegen
111
runs-on: ubuntu-latest
112
+ services:
113
+ postgres:
114
+ image: postgres:latest
115
+ env:
116
+ POSTGRES_USER: postgres
117
+ POSTGRES_PASSWORD: postgres
118
+ POSTGRES_DB: postgres
119
+ ports:
120
+ - 5432:5432
121
steps:
122
- name: Checkout PR branch
123
uses: actions/checkout@v4
crates/pg_console/src/utils.rs
@@ -3,7 +3,6 @@ use crate::{markup, Markup};
use std::io;
5
/// It displays a type that implements [std::fmt::Display]
6
-
7
pub struct DebugDisplay<T>(pub T);
8
9
impl<T> Display for DebugDisplay<T>
0 commit comments