Skip to content

chore(replicate): improve error handling #30

chore(replicate): improve error handling

chore(replicate): improve error handling #30

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
jobs:
ci:
name: CI
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build
- name: Format
run: cargo fmt --check
- name: Tests
run: cargo test --all-features