Skip to content

Commit a6b2393

Browse files
committed
refactor: split PR checks into separate workflow
1 parent 12f5594 commit a6b2393

2 files changed

Lines changed: 32 additions & 2 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: KBVE Postgres PR Check
2+
3+
on:
4+
pull_request:
5+
branches: [develop]
6+
7+
permissions:
8+
contents: read
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
check:
16+
runs-on: ubuntu-latest
17+
timeout-minutes: 30
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
21+
22+
- name: Install Nix
23+
uses: NixOS/nix-installer-action@d6ef7ecd8f685af89869e5aca0580a33e3e3150c
24+
with:
25+
installer-version: 2.33.2
26+
extra-conf: |
27+
substituters = https://cache.nixos.org https://nix-postgres-artifacts.s3.amazonaws.com
28+
trusted-public-keys = nix-postgres-artifacts:dGZlQOvKcNEjvT7QEAJbcV6b6uk7VF/hWMjhYleiaLI= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
29+
max-jobs = 4
30+
31+
- name: Evaluate PG17 derivation
32+
run: nix build --dry-run .#packages.x86_64-linux."psql_17/bin" --accept-flake-config

.github/workflows/ci-kilobase-runner.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: KBVE Postgres CI & Release
33
on:
44
push:
55
branches: [develop]
6-
pull_request:
7-
branches: [develop]
86
workflow_dispatch:
97

108
permissions:

0 commit comments

Comments
 (0)