Skip to content

Commit

Permalink
0.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
notsag committed Jun 4, 2021
1 parent b300769 commit 1e0e803
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/build.yml
Expand Up @@ -29,11 +29,3 @@ jobs:
- name: Tests with Pytest
run: |
python -m pytest --cov=yaml_resume --cov-report xml:test-results/coverage.xml --junitxml=test-results/junit.xml
- name: Fix code coverage paths
run: |
sed -i 's#/home/runner/work/yaml_resume/yaml_resume/#/github/workspace/#g' test-results/coverage.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
22 changes: 22 additions & 0 deletions .github/workflows/quality.yml
@@ -0,0 +1,22 @@
on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
name: SonarCloud analysis
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2 changes: 1 addition & 1 deletion yaml_resume/__init__.py
Expand Up @@ -2,4 +2,4 @@
from .validator import Validator

__all__ = ["Resume", "Validator"]
__version__ = "0.7.9"
__version__ = "0.7.10"

0 comments on commit 1e0e803

Please sign in to comment.