Skip to content

fix(deps): update module github.com/aevea/git/v2 to v3 #143

fix(deps): update module github.com/aevea/git/v2 to v3

fix(deps): update module github.com/aevea/git/v2 to v3 #143

Workflow file for this run

name: Test
on: [pull_request]
jobs:
go-test:
name: "Go Test"
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Test
run: |
export PATH=${PATH}:`go env GOPATH`/bin
go install github.com/magefile/mage
mage install
mage test
go-mod-tidy:
name: "Go mod tidy"
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.14.x
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Tidy check
run: |
export PATH=${PATH}:`go env GOPATH`/bin
go install github.com/magefile/mage
mage gomodtidy