penguin/flatgit

flatgit showcase

.github/workflows/ci.yml

raw ยท 296 bytes

name: build

on:
  push:
  pull_request:

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version: '1.26.x'
      - run: go test ./...
      - run: go vet ./...
      - run: go build ./cmd/flatgit