Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Git Automation CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Build the project
run: go build -o git-auto
- name: Run Tests
run: go test ./...