fetch-data 0.2.0

Fetch data files from a URL, but only if needed. Verify contents via SHA256. Some Python Pooch compatibility.
Documentation
name: CI
on:
  push:
  schedule:
    - cron: '0 0 1 * *'

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - name: Checkout
      uses: actions/checkout@v4
    - name: Set up Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true
    - name: Test Rust
      run: cargo test --verbose