Skip to content

chore(deps): update go-git for dependabot #32

chore(deps): update go-git for dependabot

chore(deps): update go-git for dependabot #32

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- main
- 'v*'
jobs:
test:
name: PR test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: true
- name: Install Go
uses: ./.github/actions/setup-go
- name: golangci-lint
uses: golangci/[email protected]
with:
version: latest
args: '--config=.golangci.yaml -v'
- name: Test
run: go test ./...
- name: Upload JUnit reports
uses: actions/upload-artifact@v4
with:
name: junit-reports-${{ strategy.job-index }}
path: junit.*.xml
- name: Upload to CodeCov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "unit.cover,integration.cover"