dukit 0.4.2

git cli tool for the feathered
Documentation
name: Rust

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
  
    - name: Run format check
      run: cargo fmt --check
      
    - name: Run clippy check
      run: cargo clippy

    - name: Build
      run: cargo build --verbose