dtcs 0.1.0

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
name: Checks

on:
  workflow_call:

env:
  CARGO_TERM_COLOR: always

jobs:
  python:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: actions/setup-python@v5
        with:
          python-version: "3.12"
      - name: Build and test Python package
        run: |
          python -m venv .venv
          source .venv/bin/activate
          python -m pip install --upgrade pip
          python -m pip install maturin pytest
          maturin develop --features python --locked
          pytest python/tests -v
      - name: maturin build (dry run)
        run: |
          source .venv/bin/activate
          maturin build --features python --locked

  rust:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy
      - name: cargo fmt
        run: cargo fmt --all -- --check
      - name: cargo clippy
        run: cargo clippy --all-targets -- -D warnings
      - name: cargo test
        run: cargo test --locked
      - name: cargo build
        run: cargo build --locked --all-targets
      - name: cargo publish (dry run)
        run: cargo publish --dry-run --locked