Skip to content

build(deps): bump github.com/go-git/go-git/v6 from 6.0.0-20260328145551-a93bccd59f82 to 6.0.0-alpha.1 #57

build(deps): bump github.com/go-git/go-git/v6 from 6.0.0-20260328145551-a93bccd59f82 to 6.0.0-alpha.1

build(deps): bump github.com/go-git/go-git/v6 from 6.0.0-20260328145551-a93bccd59f82 to 6.0.0-alpha.1 #57

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Refresh models catalog
run: |
git fetch --depth 1 https://github.com/router-for-me/models.git main
git show FETCH_HEAD:models.json > internal/registry/models/models.json
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Vet
run: go vet ./...
- name: Build
run: go build ./...
- name: Test
run: go test ./...