duners 0.1.2

A simple framework for fetching query results from with [Dune Analytics API](https://dune.com/docs/api/).
Documentation
name: Rust Lint & Clippy

on:
  push:
    branches: [ "main" ]

permissions:
  contents: read

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
    - name: Cache Cargo dependencies
      uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
      with:
        path: |
          ~/.cargo
          target
        key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

    - name: Lint & Clippy
      run: cargo fmt --check && cargo clippy -- -D warnings