copernicus_viewer 0.1.0

GUI viewer and library for inspecting and comparing EOPF Zarr products from the Copernicus ecosystem
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: stable

      - uses: Swatinem/rust-cache@v2

      - name: Install Linux GUI build dependencies
        run: |
          sudo apt-get update
            sudo apt-get install -y \
            libxkbcommon-dev \
            libgl1-mesa-dev \
            libwayland-dev \
            libxrandr-dev \
            libxinerama-dev \
            libxcursor-dev \
            libxi-dev \
            pkg-config

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

      - name: Verify crates.io package
        run: cargo publish --dry-run --locked