Skip to content

feat: add data_acquisition field to DataQualityAttribute struct for e… #89

feat: add data_acquisition field to DataQualityAttribute struct for e…

feat: add data_acquisition field to DataQualityAttribute struct for e… #89

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
RUST_BACKTRACE: short
ACTION_LOG_DISABLE: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: install required tools
uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- name: Cache cargo registry
uses: Swatinem/rust-cache@v2
with:
shared-key: "ci"
- name: check
run: cargo check --all
- name: rustfmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --all -- -D warnings
- name: taplo
run: taplo fmt --check
- name: run tests
run: cargo test --workspace --all-targets --all-features