Skip to content

Fix off by one error in dbase::File #201

Fix off by one error in dbase::File

Fix off by one error in dbase::File #201

Workflow file for this run

name: Rust
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run test serde feature
run: cargo test --features serde
- name: Run test yore feature
run: cargo test --features yore
- name: Run test datafusion feature
run: cargo test --features datafusion
- name: Run test all feature
run: cargo test --all-features
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check