Skip to content

Commit

Permalink
Merge branch 'main' into port-distance-insight
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilly12 authored Sep 17, 2021
2 parents f380703 + 432b120 commit 009d32c
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 🐞 Bug
description: File a bug/issue
title: "[BUG] <title>"
title: "<title>"
labels: "bug,status:triage"
body:
- type: checkboxes
Expand Down
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ contact_links:
- name: Fairlens community discussions
url: https://github.com/synthesized-io/fairlens/discussions
about: Please ask and answer questions here.
- name: Fairlens Documentation
url: https://fairlens.readthedocs.io/en/latest/
about: Checkout our latest documentation.
...
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Feature Request
description: Propose a new feature for development
title: "[FEATURE] <title>"
labels: "status:triage"
title: "<title>"
labels: "feature,status:triage"
body:
- type: checkboxes
attributes:
Expand Down
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/issue.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: General Issue
description: Raise a general issue for the project
title: "[ISSUE] <title>"
title: "<title>"
labels: "status:triage"
body:
- type: checkboxes
Expand All @@ -17,11 +17,10 @@ body:
description: How would you best classify the scope of this issue, using the categories below?
multiple: true
options:
- Bug
- CI/CD
- Documentation
- Improvement
- Feature
- Maintainance/Refactor
validations:
required: true
- type: textarea
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- 3.7
- 3.8
- 3.9

name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -44,6 +45,14 @@ jobs:
env:
SYNTHESIZED_KEY: ${{ secrets.SYNTHESIZED_KEY }}

- name: Upload Codecov report
if: ${{ matrix.python-version }} == '3.7'
uses: codecov/[email protected]
with:
files: coverage-reports/cobertura.xml
flags: unittests
fail_ci_if_error: false

- name: SonarCloud Scan
if: ${{ matrix.python-version }} == '3.7'
uses: SonarSource/sonarcloud-github-action@master
Expand All @@ -57,7 +66,7 @@ jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2.3.4

- uses: actions/setup-python@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=synthesized-io_fairlens&metric=sqale_rating&token=4df8d79db869c4f81a2225da446ca06d3b83d4be)](https://sonarcloud.io/dashboard?id=synthesized-io_fairlens)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=synthesized-io_fairlens&metric=coverage&token=4df8d79db869c4f81a2225da446ca06d3b83d4be)](https://sonarcloud.io/dashboard?id=synthesized-io_fairlens)
[![codecov](https://codecov.io/gh/synthesized-io/fairlens/branch/main/graph/badge.svg?token=0EWTY95MU0)](https://codecov.io/gh/synthesized-io/fairlens)
![GitHub Repo stars](https://img.shields.io/github/stars/synthesized-io/fairlens?style=social)

# FairLens
Expand Down
11 changes: 11 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
coverage:
status:
project:
default:
target: auto # auto compares coverage to the previous base commit
threshold: 1%
patch:
default:
target: 50%
...

0 comments on commit 009d32c

Please sign in to comment.