aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/coverage.yml
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-12-22 11:32:42 -0500
committerBobby <[email protected]>2022-12-22 11:32:42 -0500
commite0718cf381fd4d9f9ae1bb734cdb15c6e6a444ef (patch)
tree999323272453cb3329e6a1f65f0a6ef9e25664ce /.github/workflows/coverage.yml
parent589017b4680b4843c171120c127ba73e5f024ea7 (diff)
downloadedify-e0718cf381fd4d9f9ae1bb734cdb15c6e6a444ef.tar.xz
edify-e0718cf381fd4d9f9ae1bb734cdb15c6e6a444ef.zip
Update Actions to Support Python 3.11
Diffstat (limited to '.github/workflows/coverage.yml')
-rw-r--r--.github/workflows/coverage.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 4874616..18ea7af 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
- python-version: 3.9
+ python-version: 3.11
- name: install dependencies
run: |
python -m pip install --upgrade pip
@@ -20,6 +20,6 @@ jobs:
- name: upload coverage reports
run: |
tox -e clean -v
- tox -e py39 -v
+ tox -e py311 -v
tox -e report -v
tox -e codecov -v