Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 7c5cde1

Browse files
Create coverall.yml
Signed-off-by: Shahm Najeeb <[email protected]>
1 parent 88820ef commit 7c5cde1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/coverall.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on: ["push", "pull_request"]
2+
3+
name: Test Coveralls
4+
5+
jobs:
6+
7+
build:
8+
name: Build
9+
runs-on: ubuntu-latest
10+
steps:
11+
12+
- uses: actions/checkout@v1
13+
14+
- name: Use Node.js 16.x
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: 16.x
18+
19+
- name: insatll and run coveralls
20+
run: |
21+
pip install coveralls
22+
coverage run --source=mypkg -m pytest tests/
23+
coveralls
24+
25+
- name: Coveralls
26+
uses: coverallsapp/github-action@v2

0 commit comments

Comments
 (0)