-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 1.21 KB
/
coverage.yml
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
# .github/workflows/ci.yml
# https://github.com/marketplace/actions/python-coverage-comment?version=v3.14
name: coverage
on:
pull_request:
push:
branches:
- "main"
jobs:
test:
name: Run tests & display coverage
runs-on: ubuntu-latest
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: write
# Gives the action the necessary permissions for pushing data to the
# python-coverage-comment-action branch, and for editing existing
# comments (to avoid publishing multiple comments in the same PR)
contents: write
steps:
- uses: actions/checkout@v4
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
- name: Install everything, run the tests, produce the .coverage file
run: | # This is the part where you put your own test command
sudo apt-get install python3-tk
python -m coverage run -m unittest
python -m coverage report
- name: Coverage comment
uses: py-cov-action/python-coverage-comment-action@v3
with:
GITHUB_TOKEN: ${{ github.token }}