Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Add transaction api to support add data files. #185

Add transaction api to support add data files.

Add transaction api to support add data files. #185

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust Stable
run: rustup update stable
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust Stable
run: rustup update stable
- name: Build
run: cargo build --all-features
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust Stable
run: rustup update stable
- name: Test
run: cargo test --all-targets --all-features