git-step 0.1.1

A tool to step through git commits
name: CI

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

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - name: Build
        run: cargo build --verbose

      - name: Set git config
        run: |
          git config --global user.email "<author@example.com>"
          git config --global user.name "A U Thor"

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