Skip to content

Bump github.com/go-git/go-git/v5 from 5.18.0 to 5.19.1 #431

Bump github.com/go-git/go-git/v5 from 5.18.0 to 5.19.1

Bump github.com/go-git/go-git/v5 from 5.18.0 to 5.19.1 #431

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
env:
# Settings - Secrets and variables - Actions - New repository secret GITLAB_TOKEN
# Settings - Secrets and variables - Dependabot - New repository secret GITLAB_TOKEN
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
GITLAB_BASE_URL: https://gitlab.com
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: 'stable'
check-latest: true
- name: Install binary
run: go install
- name: Smoke tests
run: |
import-gitlab-commits -h
import-gitlab-commits --help
- name: Unit tests
run: go test -v -count=1 -race -shuffle=on -cover ./...
- name: Integration tests
run: go test -tags=integration -run=TestGitLab -shuffle=on -count=1 -race -v ./...