Skip to content

Commit

Permalink
Merge pull request #14 from smlx/ci-coverage
Browse files Browse the repository at this point in the history
Add CI coverage
  • Loading branch information
smlx committed Feb 9, 2021
2 parents 585cf04 + ffda71d commit fd5d72c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 19 deletions.
Expand Up @@ -2,12 +2,14 @@ name: "CodeQL"

on:
push:
branches: [ main ]
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
branches:
- main
schedule:
- cron: '29 15 * * 1'
- cron: '29 15 * * 1'

jobs:
analyze:
Expand All @@ -19,14 +21,11 @@ jobs:
matrix:
language: [ 'go' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
Expand All @@ -36,21 +35,8 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/coverage.yaml
@@ -0,0 +1,27 @@
name: Coverage

on:
push:
branches:
- main

jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v2
with:
go-version: ^1.15
- name: Checkout code
uses: actions/checkout@v2
- name: Calculate coverage
run: go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.5
- name: Coveralls
uses: coverallsapp/github-action@v1.0.4
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
1 change: 1 addition & 0 deletions README.md
@@ -1,6 +1,7 @@
# Conventional Commits Versioner

![Tag and Release](https://github.com/smlx/ccv/workflows/Tag%20and%20Release/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/smlx/ccv/badge.svg?branch=main)](https://coveralls.io/github/smlx/ccv?branch=main)

`ccv` does one thing: it walks git commit history back from the current `HEAD` to find the most recent tag, taking note of commit messages along the way.
When it reaches the most recent tag, it uses the commit messages it saw to figure out how the tag should be incremented, and prints the incremented tag.
Expand Down

0 comments on commit fd5d72c

Please sign in to comment.