Skip to content

Bump github.com/go-git/go-git/v5 from 5.8.1 to 5.9.0 #297

Bump github.com/go-git/go-git/v5 from 5.8.1 to 5.9.0

Bump github.com/go-git/go-git/v5 from 5.8.1 to 5.9.0 #297

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: go build
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Run unit tests
run: go test ./... -coverprofile cover.out
- name: Upload the coverage to Codecov
uses: codecov/codecov-action@v3