新增 GitHub Actions 工作流以运行 PostgreSQL 容器并输出 pg_dump 版本

This commit is contained in:
严浩
2025-02-21 12:03:17 +08:00
parent 0093dd7abe
commit 2a09a9666d

7
.github/workflows/docker-run.yaml vendored Normal file
View File

@@ -0,0 +1,7 @@
on:
push:
jobs:
docker-run:
runs-on: ubuntu-latest
steps:
- run: docker run --rm postgres:14 pg_dump --version