Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AzraelSec committed Dec 12, 2023
1 parent 9e277a1 commit 51c166d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,13 @@ jobs:
- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
- name: Unit Test
run: go test -v -race -covermode atomic -coverprofile=covprofile ./...

- name: Install goveralls
run: go install github.com/mattn/goveralls@latest

- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN}}
run: goveralls -coverprofile=covprofile -service=github
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
<p align="center">
<img alt="Glock Logo" src="/assets/logo.png" width="250">
</p>
<p align="center">
<a href="https://github.com/AzraelSec/Glock/releases"><img src="https://img.shields.io/github/release/AzraelSec/Glock.svg" alt="Latest Release"></a>
<!-- <a href="https://pkg.go.dev/github.com/AzraelSec/Glock?tab=doc"><img src="https://godoc.org/github.com/golang/gddo?status.svg" alt="GoDoc"></a> -->
<a href="https://github.com/AzraelSec/Glock/actions"><img src="https://github.com/AzraelSec/Glock/actions/workflows/ci.yml/badge.svg" alt="Build Status"></a>
<a href='https://coveralls.io/github/AzraelSec/Glock?branch=main'><img src='https://coveralls.io/repos/github/AzraelSec/Glock/badge.svg?branch=main' alt='Coverage Status' /></a>
</p>

## Introduction

Expand Down

0 comments on commit 51c166d

Please sign in to comment.