Skip to content

Commit 0840c39

Browse files
committed
update schedule workflow to run on python 3.8
1 parent 586b91d commit 0840c39

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.github/workflows/pytest.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Tests
22

3-
on:
4-
push:
5-
pull_request:
6-
schedule:
7-
# Every Monday at 7AM UTC
8-
- cron: '0 07 * * 1'
9-
3+
on: [push, pull_request]
104

115
jobs:
126
ubuntu:
@@ -56,4 +50,4 @@ jobs:
5650
uses: codecov/codecov-action@v1
5751
with:
5852
fail_ci_if_error: true
59-
verbose: true
53+
verbose: true

.github/workflows/scheduled_test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Tests
22

33
on:
4-
push:
5-
pull_request:
64
schedule:
75
# Every Monday at 7AM UTC
86
- cron: '0 07 * * 1'
@@ -14,7 +12,7 @@ jobs:
1412
runs-on: ubuntu-latest
1513
strategy:
1614
matrix:
17-
python-version: [3.6, 3.7, 3.8]
15+
python-version: [3.8]
1816
fail-fast: false
1917
max-parallel: 2
2018

0 commit comments

Comments
 (0)