Skip to content

Commit 1f353f6

Browse files
committed
ci: update python version to 3.11
1 parent 507df64 commit 1f353f6

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/lint-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010

11-
- name: Set up Python 3.10
11+
- name: Set up Python 3.11
1212
uses: actions/setup-python@v5
1313
with:
14-
python-version: "3.10"
14+
python-version: "3.11"
1515

1616
- name: Install dependencies
1717
run: |
@@ -23,10 +23,10 @@ jobs:
2323
run: flake8 mitreattack/ --count --exit-zero --statistics
2424

2525
# should turn these back on once they take less than 10 minutes to run
26-
# - name: Run pytest
27-
# run: |
28-
# cd tests
29-
# pytest --cov=mitreattack --cov-report html
26+
- name: Run pytest
27+
run: |
28+
cd tests
29+
pytest --cov=mitreattack --cov-report html
3030
3131
publish:
3232
needs: lint-test
@@ -40,10 +40,10 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v4
4242

43-
- name: Set up Python 3.10
43+
- name: Set up Python 3.11
4444
uses: actions/setup-python@v5
4545
with:
46-
python-version: "3.10"
46+
python-version: "3.11"
4747

4848
- name: Install dependencies
4949
run: |

0 commit comments

Comments
 (0)