Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
with:
go-version: "1.24.2"
- run: go mod tidy
- name: go-test
run: |
go test -v ./...
- run: go install gotest.tools/gotestsum@latest
- run: gotestsum --junitfile unit-tests.xml -- -coverprofile=coverage.out -covermode=atomic ./...
- uses: codecov/codecov-action@v5
with:
files: coverage.out
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

![gitlab-sync logo](./assets/gitlab-sync.png)

[![Coverage](https://codecov.io/gh/boxboxjason/gitlab-sync/branch/main/graph/badge.svg)](https://codecov.io/gh/boxboxjason/gitlab-sync)
![Go Version](https://img.shields.io/github/go-mod/go-version/boxboxjason/gitlab-sync)
[![Latest Release](https://img.shields.io/github/v/release/boxboxjason/gitlab-sync)](https://github.com/boxboxjason/gitlab-sync/releases)
[![Release Workflow](https://github.com/boxboxjason/gitlab-sync/actions/workflows/release.yml/badge.svg)](https://github.com/boxboxjason/gitlab-sync/actions/workflows/release.yml)
![Last Commit](https://img.shields.io/github/last-commit/boxboxjason/gitlab-sync)
[![Tests](https://github.com/boxboxjason/gitlab-sync/actions/workflows/go.yml/badge.svg)](https://github.com/boxboxjason/gitlab-sync/actions/workflows/go.yml)
![Stars](https://img.shields.io/github/stars/boxboxjason/gitlab-sync)
![Contributors](https://img.shields.io/github/contributors/boxboxjason/gitlab-sync?style=social)
![Issues](https://img.shields.io/github/issues/boxboxjason/gitlab-sync)
![Pull Requests](https://img.shields.io/github/issues-pr/boxboxjason/gitlab-sync)

(golang) CLI tool to synchronize GitLab projects and groups between two GitLab instances.
It is designed to be used in a CI/CD pipeline to automate the process of keeping two GitLab instances in sync.

Expand Down
Loading