Skip to content

Commit 21b0ba9

Browse files
chenwanyenrico-usai
authored andcommitted
Remove python 3.6 check and fix ruby check
Reference: https://github.com/ruby/setup-ruby For virtual environments we're currently using 3.7.10 Signed-off-by: chenwany <[email protected]>
1 parent da23a67 commit 21b0ba9

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v2
3535
- name: Setup Ruby
36-
uses: actions/setup-ruby@v1
36+
uses: ruby/setup-ruby@v1
3737
with:
3838
ruby-version: 2.7
3939
- name: Install dependencies
@@ -51,15 +51,11 @@ jobs:
5151
matrix:
5252
os: [ubuntu-latest]
5353
name:
54-
- Python 3.6 Tests
5554
- Python 3.7 Tests
5655
- Python 3.8 Tests
5756
- Python 3.9 Tests
5857
- Code Checks
5958
include:
60-
- name: Python 3.6 Tests
61-
python: 3.6
62-
toxenv: py36
6359
- name: Python 3.7 Tests
6460
python: 3.7
6561
toxenv: py37

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
toxworkdir=.tox
33
skipsdist=True
44
envlist =
5-
py{36,37,38,39}
5+
py{37,38,39}
66
code-linters
77

88
# Default testenv. Used to run tests on all python versions.

0 commit comments

Comments
 (0)