gifmeta 0.4.1

A sacred tool for inspecting and editing GIF metadata from the command line.
Documentation
name: CI

on:
  push:
    branches: [main, staging]
  pull_request:

jobs:
  test:
    name: Build and Test
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v3

      - name: Set up Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true

      - name: Build
        run: cargo build --verbose

      - name: Run tests
        run: cargo test --verbose

      - name: Lint (optional)
        run: cargo fmt -- --check