6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 19:09:45 +00:00

Merge pull request #1 from grdl/testing_action

Add build github action
This commit is contained in:
Grzegorz Dlugoszewski
2020-06-11 17:55:37 +02:00
committed by GitHub
3 changed files with 23 additions and 4 deletions

18
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: build
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
- name: Run go test
run: go test ./... -v

View File

@@ -1,4 +1,4 @@
name: goreleaser
name: release
on:
push:
@@ -11,8 +11,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v2
with:

View File

@@ -1,4 +1,7 @@
# git-get
`git get` - a better way to clone, organize and manage git repositories.
![](https://github.com/grdl/git-get/workflows/build/badge.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/grdl/git-get)](https://goreportcard.com/report/github.com/grdl/git-get)
`git-get` is better way to clone, organize and manage git repositories.