Skip to content

Commit 3c05db3

Browse files
authored
Merge pull request #178 from gnikit/feature/coverage-multiple-py-v
Add coverage for multiple Python versions
2 parents 999e6cc + 14549a4 commit 3c05db3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ubuntu-latest, windows-latest]
37+
python-version: ["3.8","3.10"]
3738
runs-on: ${{ matrix.os }}
3839

3940
steps:
4041
- uses: actions/checkout@v3
4142
- uses: actions/setup-python@v4
4243
with:
43-
python-version: "3.10"
44+
python-version: ${{ matrix.python-version }}
4445

4546
- name: Coverage report
4647
run: |

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Unreleased
44

5+
## 2.14.0
6+
7+
### Added
8+
9+
- Added coverage testing for multiple Python versions
10+
([#168](https://github.com/gnikit/fortls/pull/178))
11+
512
## 2.13.0
613

714
### Added

0 commit comments

Comments
 (0)