We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586b91d commit 0840c39Copy full SHA for 0840c39
.github/workflows/pytest.yml
@@ -1,12 +1,6 @@
1
name: Tests
2
3
-on:
4
- push:
5
- pull_request:
6
- schedule:
7
- # Every Monday at 7AM UTC
8
- - cron: '0 07 * * 1'
9
-
+on: [push, pull_request]
10
11
jobs:
12
ubuntu:
@@ -56,4 +50,4 @@ jobs:
56
50
uses: codecov/codecov-action@v1
57
51
with:
58
52
fail_ci_if_error: true
59
- verbose: true
53
+ verbose: true
.github/workflows/scheduled_test.yml
@@ -1,8 +1,6 @@
on:
schedule:
# Every Monday at 7AM UTC
- cron: '0 07 * * 1'
@@ -14,7 +12,7 @@ jobs:
14
runs-on: ubuntu-latest
15
13
strategy:
16
matrix:
17
- python-version: [3.6, 3.7, 3.8]
+ python-version: [3.8]
18
fail-fast: false
19
max-parallel: 2
20
0 commit comments