Skip to content

Commit aba0dc2

Browse files
authored
Remove python 2.7 because ubuntu 20 has been removed as runner
1 parent 0032786 commit aba0dc2

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,6 @@ on: [push, pull_request]
44

55
permissions: {}
66
jobs:
7-
Unit_Tests_Py27:
8-
runs-on: ubuntu-20.04
9-
container:
10-
image: python:2.7.18-buster
11-
steps:
12-
- uses: actions/checkout@v4
13-
- name: Install dependencies
14-
run: |
15-
pip install -r test-requirements.txt -r requirements.txt
16-
- name: Test
17-
run: |
18-
pytest
19-
207
Unit_tests:
218
runs-on: ${{ matrix.os }}
229
timeout-minutes: 10
@@ -69,7 +56,7 @@ jobs:
6956
if: github.event_name == 'push'
7057
runs-on: ${{ matrix.os }}
7158
timeout-minutes: 10
72-
needs: [Unit_tests, Mypy, Unit_Tests_Py27]
59+
needs: [Unit_tests, Mypy]
7360
strategy:
7461
fail-fast: false
7562
matrix:

0 commit comments

Comments
 (0)