Skip to content

Commit a6bca01

Browse files
committed
build: added python3.11 to github actions
1 parent e49b33f commit a6bca01

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
platform: [ ubuntu-latest, macos-latest ]
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1111

1212
runs-on: ${{ matrix.platform }}
1313
steps:

.github/workflows/codacy-coverage-reporter.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
runs-on: ${{ matrix.platform }}
1515
steps:
1616
- uses: actions/checkout@v3
17+
- name: Get history and tags for SCM versioning to work
18+
run: |
19+
git fetch --prune --unshallow
20+
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1721
- name: Set up Python ${{ matrix.python-version }}
1822
uses: actions/setup-python@v4
1923
with:

0 commit comments

Comments
 (0)