Bump version: 0.6.0 → 0.6.1 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Study lyte Coverage Badge | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Checkout wiki | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{github.repository}}.wiki | |
path: ./.github/wiki/ | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
python -m pip install --upgrade pip | |
python -m pip install pytest coverage genbadge[coverage] | |
python setup.py install | |
- name: Create Badges | |
shell: bash | |
run: | | |
coverage run --source study_lyte -m pytest | |
coverage xml | |
genbadge coverage -i coverage.xml -o .github/wiki/coverage.svg | |
- name: Push to wiki | |
shell: bash | |
run: | | |
cd ./.github/wiki/ | |
git add --all | |
git diff-index --quiet HEAD && exit | |
git config --local user.name "GitHub Action" | |
git config --local user.email "[email protected]" | |
git commit --amend --no-edit && git push --force-with-lease || \ | |
git commit -m"Update coverage" && git push |