Skip to content

Make test deterministic by iterating through batches #113

Make test deterministic by iterating through batches

Make test deterministic by iterating through batches #113

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["*"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
test-julia-1-10:
uses: ./.github/workflows/test.yml
with:
build_rust: true
julia_version: '1.10'
os: ubuntu-latest
arch: x64
test-julia-1-11:
uses: ./.github/workflows/test.yml
with:
build_rust: true
julia_version: '1.11'
os: ubuntu-latest
arch: x64
rust-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check Rust formatting
run: cargo fmt --all -- --check
working-directory: iceberg_rust_ffi