Skip to content

Commit 9b48e7e

Browse files
authored
Merge pull request #90 from gnikit/feature/cov-win
Adds coverage report uploading for Windows
2 parents a35b684 + ff39cee commit 9b48e7e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ jobs:
3131
run: black --diff --check --verbose .
3232

3333
coverage:
34-
runs-on: ubuntu-latest
34+
strategy:
35+
matrix:
36+
os: [ubuntu-latest, windows-latest]
37+
runs-on: ${{ matrix.os }}
3538

3639
steps:
3740
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELONG
22

3+
## 2.2.12
4+
5+
### Added
6+
7+
- Added coverage reporting for Unix + Windows
8+
39
## 2.2.11
410

511
### Added

0 commit comments

Comments
 (0)