Skip to content

Commit

Permalink
Remove goveralls fork
Browse files Browse the repository at this point in the history
PR has been merged. mattn/goveralls#142 (comment)
  • Loading branch information
jderusse committed Oct 30, 2019
1 parent 766455f commit a5542b8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 22 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/lint.yaml

This file was deleted.

18 changes: 11 additions & 7 deletions .github/workflows/coverage.yaml → .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ on:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: Lint Go Code
uses: docker://golangci/golangci-lint:latest
with:
args: golangci-lint run ./...
test:
name: Test with Coverage
runs-on: ubuntu-latest
Expand All @@ -21,14 +31,8 @@ jobs:
go mod download
GO111MODULE=off go get github.com/mattn/goveralls
cur=$PWD
cd $HOME/go/src/github.com/mattn/goveralls
git remote add fork https://github.com/jderusse/goveralls.git
git pull fork github
go build -o $cur/goveralls .
- name: Run Unit tests.
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: |
./goveralls -debug -race -covermode atomic --flags ./...
$HOME/go/bin/goveralls -race -covermode atomic --flags ./...

0 comments on commit a5542b8

Please sign in to comment.