excelize 0.0.1

Rust language library for reading and writing Microsoft Excelâ„¢ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets
Documentation
on: [push, pull_request]
name: build

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Install
      run: rustup default 1.63.0
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose