Skip to content

Commit

Permalink
remove coverage from action
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Landgraf committed Aug 30, 2021
1 parent 68eb5d9 commit a530a9b
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/golang-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Golang CI
on: [push]
jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -16,6 +16,13 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- run: make test
- run: docker-compose run testserver make ci
- run: go run ./vendor/github.com/mattn/goveralls -coverprofile=coverage.out -service=travis-ci
- name: Unit tests
run: make test
- name: Integration tests
run: docker-compose run testserver make ci
# publish:
# runs-on: ubuntu-latest
# if: ${{ github.ref == 'refs/heads/master' }}
# steps:
# - name: Publish coverage
# run: go run ./vendor/github.com/mattn/goveralls -coverprofile=coverage.out -service=travis-ci

0 comments on commit a530a9b

Please sign in to comment.