Skip to content

Commit 5fd00d1

Browse files
committed
fix: ci
1 parent 3c58c96 commit 5fd00d1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci.yml renamed to .github/workflows/pull_request.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Pull Request
22

33
on:
44
workflow_dispatch:
@@ -109,6 +109,15 @@ jobs:
109109
codegen:
110110
name: Codegen
111111
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
112121
steps:
113122
- name: Checkout PR branch
114123
uses: actions/checkout@v4

crates/pg_console/src/utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use crate::{markup, Markup};
33
use std::io;
44

55
/// It displays a type that implements [std::fmt::Display]
6-
76
pub struct DebugDisplay<T>(pub T);
87

98
impl<T> Display for DebugDisplay<T>

0 commit comments

Comments
 (0)