google-book-scraper 0.4.0

Tool and library for downloading the contents of books hosted on books.google.com for offline viewing.
Documentation
name: Test

on: 
  push:
    # Don't run tests when pushing to branches that start with "action_". 
    # These are used for testing other workflows.
    branches-ignore: [ "action_*" ]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    name: Run tests
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v6
    - name: Build
      run: cargo build
    - name: Run tests
      run: cargo test