Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,6 @@ jobs:
matrix:
os: [ubuntu-latest]
rust: [stable, beta]
postgres: ['14', '15', '16', '17', '18']

services:
postgres:
image: postgres:${{ matrix.postgres }}-alpine
env:
POSTGRES_PASSWORD: test.123
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: test.123
MYSQL_DATABASE: cdc_db
MYSQL_USER: cdc_user
MYSQL_PASSWORD: test.123
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
ports:
- 3306:3306

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -86,9 +55,6 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check

# - name: Run clippy
# run: cargo clippy --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious -D clippy::complexity -D clippy::perf

- name: Build
run: cargo build --verbose

Expand Down Expand Up @@ -120,31 +86,13 @@ jobs:

- name: Build documentation
run: cargo doc --no-deps --all-features

- name: Check for broken intra-doc links
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: "-D warnings"

coverage:
name: Code Coverage
runs-on: ubuntu-latest

services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_PASSWORD: test.123
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

steps:
- uses: actions/checkout@v4

Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check

# clippy:
# name: Clippy
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

# - uses: dtolnay/rust-toolchain@stable
# with:
# components: clippy

- name: Install dependencies
run: |
sudo apt-get update
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![Crates.io Downloads (recent)](https://img.shields.io/crates/dr/pg_walstream)](https://crates.io/crates/pg_walstream)
[![Crates.io Total Downloads](https://img.shields.io/crates/d/pg_walstream)](https://crates.io/crates/pg_walstream)
[![docs.rs](https://img.shields.io/docsrs/pg_walstream)](https://docs.rs/pg-walstream)
[![codecov](https://codecov.io/gh/isdaniel/pg-walstream/graph/badge.svg?token=e0zmvpOWvz)](https://codecov.io/gh/isdaniel/pg-walstream)

# pg-walstream

Expand Down