File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+
9
+ defaults :
10
+ run :
11
+ shell : sh
12
+
13
+ strategy :
14
+ matrix :
15
+ pgversion :
16
+ - 16
17
+ - 15
18
+ - 14
19
+ - 13
20
+ - 12
21
+ - 11
22
+ - 10
23
+
24
+ env :
25
+ PGVERSION : ${{ matrix.pgversion }}
26
+
27
+ steps :
28
+ - name : checkout
29
+ uses : actions/checkout@v3
30
+
31
+ - name : install pg
32
+ run : |
33
+ sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -v $PGVERSION -p -i
34
+ sudo apt-get install -f libdbd-pg-perl
35
+ sudo -u postgres createuser -s "$USER"
36
+
37
+ - name : test
38
+ run : |
39
+ # 02_same_schema test currently broken
40
+ rm -fv t/02_same_schema.t
41
+ LC_ALL=C PERL_USE_UNSAFE_INC=1 PGBINDIR=/usr/lib/postgresql/$PGVERSION/bin prove t
You can’t perform that action at this time.
0 commit comments