Skip to content

fix(commit): stage untracked files with git add -A (#16) #42

fix(commit): stage untracked files with git add -A (#16)

fix(commit): stage untracked files with git add -A (#16) #42

Workflow file for this run

name: CI
on:
push:
branches:
- main
- codex/**
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Go Vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest