Skip to content

Commit f4d34ea

Browse files
authored
Use actual precise Python version @ coverage flags
1 parent bc5e840 commit f4d34ea

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- uses: actions/setup-python@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
id: python-install
2123
with:
2224
python-version: ${{ matrix.python-version }}
2325
cache: pip
@@ -37,4 +39,4 @@ jobs:
3739
with:
3840
token: ${{ secrets.CODECOV_TOKEN }}
3941
file: ./coverage.xml
40-
flags: Python_${{ matrix.python-version }}
42+
flags: Python_${{ steps.python-install.outputs.python-version }}

0 commit comments

Comments
 (0)