yact 2.3.3

Yet Another Commit Transformer: a tool for formatting staged files with minimal disturbance to developer workflow.
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: Configure git
      run: git config --global user.name "Test User" && git config --global user.email "test.user@github.com"
    - name: Build
      run: cargo build --verbose
    - name: Lint
      run: cargo fmt --check
    - name: Run tests
      run: cargo test --verbose