Skip to content

Commit 3106ffe

Browse files
authored
Merge pull request #42 from Remi-Gau/main
[INFRA] update python version on CI
2 parents 7775628 + c052f96 commit 3106ffe

File tree

2 files changed

+40
-48
lines changed

2 files changed

+40
-48
lines changed

.github/workflows/miss_hit_quality.yml

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,31 @@ on:
44
push:
55
branches:
66
- master
7-
pull_request:
8-
branches: ['*']
97

108
jobs:
119
build:
12-
1310
runs-on: ubuntu-latest
1411

1512
steps:
16-
17-
- uses: actions/checkout@v3
18-
with:
19-
submodules: true
20-
fetch-depth: 1
21-
22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v4
24-
with:
25-
python-version: 3.6
26-
27-
- name: Install dependencies
28-
run: |
29-
python -m pip install --upgrade pip setuptools
30-
pip3 install -r requirements.txt
31-
32-
- name: MISS_HIT Metrics
33-
run: |
34-
mh_metric --ci
35-
36-
- name: MISS_HIT Bug finder
37-
run: |
38-
mh_lint
13+
- uses: actions/checkout@v3
14+
with:
15+
submodules: true
16+
fetch-depth: 1
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: 3.11
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip setuptools
26+
pip3 install -r requirements.txt
27+
28+
- name: MISS_HIT Metrics
29+
run: |
30+
mh_metric --ci
31+
32+
- name: MISS_HIT Bug finder
33+
run: |
34+
mh_lint

.github/workflows/miss_hit_style.yml

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,27 @@ on:
44
push:
55
branches:
66
- master
7-
pull_request:
8-
branches: ['*']
97

108
jobs:
119
build:
12-
1310
runs-on: ubuntu-latest
1411

1512
steps:
16-
17-
- uses: actions/checkout@v3
18-
with:
19-
submodules: true
20-
fetch-depth: 1
21-
22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v4
24-
with:
25-
python-version: 3.6
26-
27-
- name: Install dependencies
28-
run: |
29-
python -m pip install --upgrade pip setuptools
30-
pip3 install -r requirements.txt
31-
32-
- name: MISS_HIT Code style
33-
run: |
34-
mh_style
13+
- uses: actions/checkout@v3
14+
with:
15+
submodules: true
16+
fetch-depth: 1
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: 3.11
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip setuptools
26+
pip3 install -r requirements.txt
27+
28+
- name: MISS_HIT Code style
29+
run: |
30+
mh_style

0 commit comments

Comments
 (0)