build(deps): bump github.com/go-git/go-git/v6 from 6.0.0-20260328145551-a93bccd59f82 to 6.0.0-alpha.1 #57
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ./... |