We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d1aecb + 3c05db3 commit e3ed810Copy full SHA for e3ed810
.github/workflows/main.yml
@@ -34,13 +34,14 @@ jobs:
34
strategy:
35
matrix:
36
os: [ubuntu-latest, windows-latest]
37
+ python-version: ["3.8","3.10"]
38
runs-on: ${{ matrix.os }}
39
40
steps:
41
- uses: actions/checkout@v3
42
- uses: actions/setup-python@v4
43
with:
- python-version: "3.10"
44
+ python-version: ${{ matrix.python-version }}
45
46
- name: Coverage report
47
run: |
CHANGELOG.md
@@ -2,6 +2,13 @@
2
3
## Unreleased
4
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
12
## 2.13.0
13
14
### Added
0 commit comments