fng_api_wrapper 1.0.3

Crypto Fear and Greed API wrapper
Documentation
name: Build and Test

on:
  push:
    branches:
      - main
  pull_request:
  schedule:
    - cron: '21 2 * * *' # every day at 2:21 AM UTC

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    name: Build and Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: rust-toolchain
        uses: dtolnay/rust-toolchain@stable
      - name: Build
        run: cargo build --verbose
      - name: Run unit tests
        run: cargo test --lib --verbose
      - name: Run integration tests
        run: cargo test --test '*' --verbose