Skip to content

chore(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1 #261

chore(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1

chore(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1 #261

Workflow file for this run

name: lint-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: lint
uses: golangci/[email protected]
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
- name: build
run: go build .