Skip to content

Commit 9c325dc

Browse files
committed
updated python3.6.yaml
1 parent a3cec30 commit 9c325dc

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/python3.6.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ on:
2727
jobs:
2828
build:
2929
#name: build
30-
timeout-minutes: 10
30+
timeout-minutes: 60
3131
runs-on: ${{ matrix.os }}
3232
strategy:
3333
matrix:
3434
os: [ubuntu-latest]
35-
#python-version: [2.7, 3.6, 3.7, 3.8, pypy2, pypy3]
35+
#python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy2, pypy3]
3636
python-version: [3.6]
3737
steps:
3838
- uses: actions/checkout@v2
@@ -42,8 +42,12 @@ jobs:
4242
- uses: actions/cache@v1
4343
with:
4444
path: ~/.cache/pip
45-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
45+
key: ${{ runner.os }}-pip-devops-python-tools # -${{ hashFiles('**/requirements.txt') }}
4646
restore-keys: |
47-
${{ runner.os }}-pip-
48-
- name: build & test
49-
run: make build test
47+
${{ runner.os }}-pip-devops-python-tools
48+
- name: init
49+
run: make init
50+
- name: build
51+
run: make ci
52+
- name: test
53+
run: make test

0 commit comments

Comments
 (0)