Skip to content

Initial work

Initial work #11

Workflow file for this run

name: CI Pipeline
on:
push:
pull_request:
branches:
- main
concurrency:
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-library:
name: cargo build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
- name: "library"
path: "."
- name: "client"
path: "rust-pgdatadiff-client"
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Cargo Build "{{ matrix.name }}"
run: |
cargo build
working-directory: ${{ matrix.path }}
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test --all
format:
name: cargo fmt && cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1
- name: Lint with Clippy
run: cargo clippy --all