forked from linux-profile/linux-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 988 Bytes
/
Copy pathpython-app-coverage.yml
File metadata and controls
39 lines (35 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 📦 Package Coverage-Test
on:
pull_request:
branches: [ "develop" ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
environment: develop
steps:
- uses: actions/checkout@v3
- name: ⚙️ Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: ⚙️ Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt --no-cache-dir
- name: ❤️️ Test with Coverage
run: |
coverage run -m pytest
- name: ⚙️ Github
run: |
git config --global user.email "email@fernandocelmer.com"
git config --global user.name "FernandoCelmer"
- name: ⚙️ Settings
run: |
rm -r coverage.svg
coverage-badge -o docs/coverage.svg
git add docs/coverage.svg
git commit -m "📘 DOCS - Update Badge"
git push
continue-on-error: true