We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 895a09f commit 4bb99d3Copy full SHA for 4bb99d3
.github/actions/setup-postgres/action.yml
@@ -35,7 +35,8 @@ runs:
35
echo "Extension directory: $(pg_config --sharedir)/extension"
36
echo "Library directory: $(pg_config --pkglibdir)"
37
38
- # Clone and build plpgsql_check
+ # Clone and build plpgsql_check (clone to /tmp to avoid workspace conflicts)
39
+ cd /tmp
40
git clone https://github.com/okbob/plpgsql_check.git
41
cd plpgsql_check
42
@@ -71,7 +72,8 @@ runs:
71
72
# Initialize pgrx for the installed PostgreSQL version
73
cargo pgrx init --pg${PG_VERSION} $(which pg_config)
74
- # Clone and build pglinter
75
+ # Clone and build pglinter (clone to /tmp to avoid workspace conflicts)
76
77
git clone https://github.com/pmpetit/pglinter.git
78
cd pglinter
79
0 commit comments