gipm 0.2.1

Gipm is a git package manager
Documentation
# We could use `@actions-rs/cargo` Action ability to automatically install `cross` tool
# in order to compile our application for some unusual targets.

on: [pull_request]

name: Test

concurrency:
  group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
  cancel-in-progress: true

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
        with:
          cache-on-failure: true
          key: test
      - run: git config --global user.name "GitHub Actions"
      - run: git config --global user.email "dummy@dummy.com"
      - run: cargo test --release