Skip to content

Commit cd18490

Browse files
committed
Updated two github actions to run on fixed version of ubuntu
1 parent a781388 commit cd18490

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/code_style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on: [push, pull_request]
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on: [push, pull_request]
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
pytest --cov=datacrunch
3232
33-
- name: "Upload coverage to Codecov"
33+
- name: 'Upload coverage to Codecov'
3434
uses: codecov/codecov-action@v1
3535
with:
3636
fail_ci_if_error: true

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Changelog
22
=========
33

44
* Added support for checking availability for a spot instance
5+
* Updated two github actions to run on fixed version of ubuntu because the latest one is missing python 3.6
6+
* Added more version of python to be used on two github actions
57

68
v1.0.10 (2022-10-18)
79
-------------------

0 commit comments

Comments
 (0)