Skip to content

Update module github.com/go-git/go-git/v5 to v5.7.0 #46

Update module github.com/go-git/go-git/v5 to v5.7.0

Update module github.com/go-git/go-git/v5 to v5.7.0 #46

Workflow file for this run

on:
push:
name: push
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.29
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.17'
- name: Check out code
uses: actions/checkout@v3
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
go test -race -covermode atomic -coverprofile=covprofile ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: covprofile
build:
name: test, build
runs-on: ubuntu-latest
steps:
- name: install go
uses: actions/setup-go@v4
with:
go-version: '1.17'
- name: git checkout
uses: actions/checkout@v3
- name: install lint
run: GO111MODULE=off go get golang.org/x/lint/golint
- name: run golint and go fmt
run: ./tests/fmtlint.sh
- name: go build
run: go build