Merge pull request #51 from pavlospt/dependabot/cargo/tokio-1.41.0 #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
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 | |
- name: Install cargo-nextest | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-nextest | |
- run: cargo nextest run --all | |
format-and-clippy: | |
name: Cargo format & 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 |